6 lines
125 B
Ruby
6 lines
125 B
Ruby
|
|
class AddUserIdToIngredient < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :ingredients, :user_id, :integer
|
||
|
|
end
|
||
|
|
end
|