9 lines
171 B
Ruby
9 lines
171 B
Ruby
class AddNdbnToIngredients < ActiveRecord::Migration[4.2]
|
|
def change
|
|
change_table :ingredients do |t|
|
|
t.string :ndbn, limit: 5, index: true
|
|
|
|
end
|
|
end
|
|
end
|