aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/hotel.rb
blob: 1d20d17e3b03e411fc83aecad42b05e9869b90c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true
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 :chef_lists, as: :employable_list
  has_many :mocktail_designers, through: :chef_lists, source: :employable, source_type: "MocktailDesigner"

  has_many :recipes, through: :chefs
end