13 lines
221 B
Ruby
13 lines
221 B
Ruby
class CreateIngredients < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :ingredients do |t|
|
|
|
|
t.string :name
|
|
t.string :density
|
|
t.text :notes
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|