Skip to content

Instantly share code, notes, and snippets.

@tanelsuurhans
Created July 4, 2013 21:41
Show Gist options
  • Save tanelsuurhans/5930388 to your computer and use it in GitHub Desktop.
Save tanelsuurhans/5930388 to your computer and use it in GitHub Desktop.
class Meal
has_many :recipes
has_many :ingredients, through: :recipes
end
class Recipe
belongs_to :meal
has_and_belongs_to_many :ingredients
end
class Ingredient
has_and_belongs_to_many :recipes
has_many :meals, through: :recipes
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment