parsley/db/migrate/20160112214203_create_ingredients.rb
2016-01-12 18:43:00 -06:00

13 lines
216 B
Ruby

class CreateIngredients < ActiveRecord::Migration
def change
create_table :ingredients do |t|
t.string :name
t.string :density
t.text :notes
t.timestamps null: false
end
end
end