parsley/db/migrate/20180823174505_add_recipe_as_ingredient_id.rb

6 lines
155 B
Ruby
Raw Normal View History

2018-08-27 16:44:45 -05:00
class AddRecipeAsIngredientId < ActiveRecord::Migration[5.2]
def change
add_column :recipe_ingredients, :recipe_as_ingredient_id, :integer
end
end