parsley/db/migrate/20160113002615_create_recipe_steps.rb
2016-10-14 12:19:00 -05:00

13 lines
244 B
Ruby

class CreateRecipeSteps < ActiveRecord::Migration[4.2]
def change
create_table :recipe_steps do |t|
t.integer :recipe_id, index: true
t.integer :sort_order
t.text :step
t.timestamps null: false
end
end
end