osem-fcy/db/migrate/20130821133651_create_vpositions.rb

16 lines
269 B
Ruby
Raw Normal View History

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