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

9 lines
246 B
Ruby
Raw Normal View History

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