785313ac23
This helps to share code between the two entities and allows easier extensions in the future.
8 lines
173 B
Ruby
8 lines
173 B
Ruby
class StockEvent < ApplicationRecord
|
|
|
|
has_many :stock_changes, dependent: :destroy
|
|
has_many :stock_articles, through: :stock_changes
|
|
|
|
validates_presence_of :date
|
|
|
|
end
|