10 lines
232 B
Ruby
10 lines
232 B
Ruby
class RecipeIngredient < ActiveRecord::Base
|
|
|
|
belongs_to :ingredient
|
|
belongs_to :recipe, inverse_of: :recipe_ingredients
|
|
|
|
validates :sort_order, presence: true
|
|
validates :custom_density, density: true, allow_blank: true
|
|
|
|
end
|