mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
8 lines
237 B
Ruby
8 lines
237 B
Ruby
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
|