Sha256: 1c8c3e4912b3264edba6453afae56d0240d9fd1b252580b236c79fef50624317
Contents?: true
Size: 514 Bytes
Versions: 6
Compression:
Stored size: 514 Bytes
Contents
# 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
Version data entries
6 entries across 6 versions & 2 rubygems