mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
11 lines
270 B
Ruby
11 lines
270 B
Ruby
class CreateRegistrationsSocialEventsTable < ActiveRecord::Migration
|
|
def up
|
|
create_table :registrations_social_events, id: false do |t|
|
|
t.references :registration, :social_event
|
|
end
|
|
end
|
|
|
|
def down
|
|
drop_table :registrations_social_events
|
|
end
|
|
end
|