foodsoft/app/models/stock_event.rb

9 lines
173 B
Ruby
Raw Normal View History

class StockEvent < ApplicationRecord
has_many :stock_changes, dependent: :destroy
has_many :stock_articles, through: :stock_changes
validates_presence_of :date
end