7 lines
171 B
Ruby
7 lines
171 B
Ruby
|
class StockEvent < ApplicationRecord
|
||
|
has_many :stock_changes, dependent: :destroy
|
||
|
has_many :stock_articles, through: :stock_changes
|
||
|
|
||
|
validates_presence_of :date
|
||
|
end
|