aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/hotel.rb
blob: 491f8dfde3c6f7c6b2d2c81586ff0cc6e1772bb5 (plain) (blame)
1
2
3
4
5
6
7
class Hotel < ActiveRecord::Base
  has_many :departments
  has_many :chefs, through: :departments
  has_many :cake_designers, source_type: 'CakeDesigner', source: :employable, through: :chefs
  has_many :drink_designers, source_type: 'DrinkDesigner', source: :employable, through: :chefs
  has_many :recipes, through: :chefs
end