Files
sx-fc/app/models/item_set.rb
2017-08-14 17:57:55 +06:30

10 lines
244 B
Ruby

class ItemSet < ApplicationRecord
has_many :menu_item_sets
has_many :menu_items, through: :menu_item_sets
has_many :menu_instance_item_sets
has_many :menu_item_instances, through: :menu_instance_item_sets
validates_presence_of :name
end