6 lines
155 B
Ruby
6 lines
155 B
Ruby
|
class AddRecipeAsIngredientId < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :recipe_ingredients, :recipe_as_ingredient_id, :integer
|
||
|
end
|
||
|
end
|