6 lines
130 B
Ruby
6 lines
130 B
Ruby
class AddUserIdToIngredient < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :ingredients, :user_id, :integer
|
|
end
|
|
end
|