mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 05:39:39 +02:00
6 lines
176 B
Ruby
6 lines
176 B
Ruby
|
# STI model to represent a point-in-time "valuation" of an account's value
|
||
|
# Types include: Appraisal, Adjustment
|
||
|
class Valuation < ApplicationRecord
|
||
|
belongs_to :account
|
||
|
end
|