Files
old-stazarucak/whatforlunch.com/db/migrate/20140330100608_create_recipes.rb

15 lines
285 B
Ruby
Raw Normal View History

2017-09-24 10:12:44 +02:00
class CreateRecipes < ActiveRecord::Migration
def change
create_table :recipes do |t|
t.string :name
t.string :duration
t.string :ingredients
t.string :process
t.string :picture_url
t.string :original_url
t.timestamps
end
end
end