2014-02-09 18:05:57 +02:00
|
|
|
class CreateConferencesQuestions < ActiveRecord::Migration
|
|
|
|
|
def change
|
2014-07-21 14:49:05 +02:00
|
|
|
create_table :conferences_questions, id: false do |t|
|
2014-02-09 18:05:57 +02:00
|
|
|
t.references :conference
|
|
|
|
|
t.references :question
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|