osem-fcy/db/migrate/20131229072532_registrations_vchoices.rb

12 lines
243 B
Ruby
Raw Normal View History

class RegistrationsVchoices < ActiveRecord::Migration
def up
2014-07-21 14:27:32 +02:00
create_table :registrations_vchoices, :id => false do |t|
t.references :registration, :vchoice
end
end
def down
drop_table :registrations_vchoices
end
end