Adopt Rails 5 belongs_to_required_by_default
This commit is contained in:
parent
2557645f4f
commit
44a198c7bc
23 changed files with 53 additions and 38 deletions
|
|
@ -18,9 +18,9 @@ class BankTransaction < ApplicationRecord
|
|||
# @return [Binary] Optional PNG image for e.g. scan of paper receipt.
|
||||
|
||||
belongs_to :bank_account
|
||||
belongs_to :financial_link
|
||||
belongs_to :supplier, foreign_key: 'iban', primary_key: 'iban'
|
||||
belongs_to :user, foreign_key: 'iban', primary_key: 'iban'
|
||||
belongs_to :financial_link, optional: true
|
||||
belongs_to :supplier, optional: true, foreign_key: 'iban', primary_key: 'iban'
|
||||
belongs_to :user, optional: true, foreign_key: 'iban', primary_key: 'iban'
|
||||
|
||||
validates_presence_of :date, :amount, :bank_account_id
|
||||
validates_numericality_of :amount
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue