blob: ff528644bc43a9b10ffa2847bf939c8d8e166e65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# 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
|