mirror of
https://github.com/we-promise/sure.git
synced 2026-04-14 09:34:05 +00:00
8 lines
227 B
Ruby
8 lines
227 B
Ruby
class Account < ApplicationRecord
|
|
VALID_ACCOUNT_TYPES = %w[Investment Depository Credit Loan Property Vehicle OtherAsset OtherLiability].freeze
|
|
|
|
belongs_to :family
|
|
|
|
scope :depository, -> { where(type: "Depository") }
|
|
end
|