Files
sx-fc/app/models/booking.rb
2017-06-05 17:14:07 +06:30

10 lines
190 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