mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
7 lines
137 B
Ruby
7 lines
137 B
Ruby
|
class Account::Holding < ApplicationRecord
|
||
|
belongs_to :account
|
||
|
belongs_to :security
|
||
|
|
||
|
scope :chronological, -> { order(:date) }
|
||
|
end
|