osem-fcy/db/migrate/20130202091051_create_dietary_choices_table.rb

14 lines
261 B
Ruby
Raw Normal View History

class CreateDietaryChoicesTable < ActiveRecord::Migration
def up
create_table :dietary_choices do |t|
t.references :conference
2014-07-21 14:49:05 +02:00
t.string :title, null: false
t.timestamps
end
end
def down
drop_table :dietary_choices
end
end