mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-25 08:09:38 +02:00
5 lines
172 B
Ruby
5 lines
172 B
Ruby
class Account < ApplicationRecord
|
|
belongs_to :family
|
|
|
|
VALID_ACCOUNT_TYPES = %w[Investment Depository Credit Loan Property Vehicle OtherAsset OtherLiability].freeze
|
|
end
|