parsley/db/migrate/20160112214203_create_ingredients.rb

13 lines
221 B
Ruby
Raw Normal View History

2016-10-14 12:19:00 -05:00
class CreateIngredients < ActiveRecord::Migration[4.2]
2016-01-12 18:43:00 -06:00
def change
create_table :ingredients do |t|
t.string :name
t.string :density
t.text :notes
t.timestamps null: false
end
end
end