我们有以下(部分)模型。
User
Booking
Apartment
Villa
Bed_Breakfast
Boutique_hotel
用户可以有多个预订,一个预订可以有多个别墅、公寓、B&B 或精品酒店。
这是我建立关系的想法。
class User
has_many: bookings
end
class booking
belons_to :user
end
class Apartment
belongs_to :booking
end
class Villa
belongs_to :booking
end
这是正确的方法吗?
谢谢...
雷姆科