mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-30 21:27:17 +00:00
8 lines
203 B
Ruby
8 lines
203 B
Ruby
class Schedule < ActiveRecord::Base
|
|
has_and_belongs_to_many :order_cycles, join_table: 'order_cycle_schedules'
|
|
|
|
attr_accessible :name, :order_cycle_ids
|
|
|
|
validates :order_cycles, presence: true
|
|
end
|