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