7 lines
179 B
Ruby
7 lines
179 B
Ruby
class Meal < ActiveRecord::Base
|
|
belongs_to :project, required: true
|
|
|
|
has_many :ingredients, as: :composition, dependent: :destroy
|
|
has_many :foods, through: :ingredients
|
|
end
|