Files
sx-fc/app/models/booking.rb
2017-05-30 23:46:22 +08:00

10 lines
192 B
Ruby

class Booking < ApplicationRecord
#primary key - need to be unique
belongs_to :dining_facility, :optional => true
belongs_to :sale, :optional => true
has_many :booking_orders
end