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

6 lines
176 B
Ruby
Raw Normal View History

# 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