parsley/db/migrate/20170413173225_add_step_text_to_recipes.rb
2017-04-13 16:18:20 -05:00

6 lines
124 B
Ruby

class AddStepTextToRecipes < ActiveRecord::Migration[5.0]
def change
add_column :recipes, :step_text, :text
end
end