search for: ingredientrecip

Displaying 1 result from an estimated 1 matches for "ingredientrecip".

Did you mean: ingredientrecipe
2007 Nov 19
2
Help with controller and view
I have the following models class Recipe < ActiveRecord::Base has_many :ingredient_recipes has_many :ingredients, :through => :ingredient_recipes end class IngredientRecipe < ActiveRecord::Base belongs_to :ingredient belongs_to :recipe end class Ingredient < ActiveRecord::Base has_many :ingredient_recipes has_many :recipes, :through => :ingredient_recipes has_many :suppliers end class Supplier < ActiveRecord::Base belongs_to:ingredi...