Files
openfoodnetwork/app/models/order_cycle_schedule.rb
Maikel Linke 38869cba2f Require associations on join model
It's actually required in the database already. This just simplifies the
code.
2023-09-04 17:07:07 +10:00

7 lines
129 B
Ruby

# frozen_string_literal: true
class OrderCycleSchedule < ApplicationRecord
belongs_to :schedule
belongs_to :order_cycle
end