1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/app/models/account.rb

7 lines
226 B
Ruby
Raw Normal View History

2024-02-02 09:05:04 -06:00
class Account < ApplicationRecord
belongs_to :family
2024-02-02 11:09:31 -06:00
scope :depository, -> { where(type: 'Depository') }
VALID_ACCOUNT_TYPES = %w[Investment Depository Credit Loan Property Vehicle OtherAsset OtherLiability].freeze
2024-02-02 09:05:04 -06:00
end