mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7 lines
292 B
Ruby
7 lines
292 B
Ruby
|
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
|
||
|
end
|