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