2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
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
|