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