osem-fcy/db/migrate/20140112192801_create_qanswers_registrations.rb

9 lines
237 B
Ruby
Raw Normal View History

2014-02-09 18:05:57 +02:00
class CreateQanswersRegistrations < ActiveRecord::Migration
def change
2014-07-21 14:49:05 +02:00
create_table :qanswers_registrations, id: false do |t|
t.references :registration, null: false
t.references :qanswer, null: false
2014-02-09 18:05:57 +02:00
end
end
end