aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/chef.rb
blob: daa208ff5fe5cbbb3b7156ecd745308fc73868a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
class Chef < ActiveRecord::Base
  belongs_to :employable, polymorphic: true
  has_many :recipes
end

class ChefList < Chef
  belongs_to :employable_list, polymorphic: true
end