blob: ff528644bc43a9b10ffa2847bf939c8d8e166e65 (
plain) (
tree)
|
|
# 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
|