7 lines
121 B
Ruby
Executable File
7 lines
121 B
Ruby
Executable File
class BookingOrder < ApplicationRecord
|
|
#primary key - need to be unique
|
|
|
|
belongs_to :booking
|
|
belongs_to :order
|
|
end
|