8 lines
109 B
Ruby
8 lines
109 B
Ruby
class Booking < ApplicationRecord
|
|
|
|
belongs_to :dining_facility
|
|
belongs_to :sale, :optional => true
|
|
|
|
|
|
end
|