2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2013-02-06 20:26:41 +01:00
|
|
|
class RenameAttendingSocialEventsWithPartner < ActiveRecord::Migration
|
|
|
|
|
def up
|
|
|
|
|
rename_column :registrations, :attending_social_events_with_partner, :attending_with_partner
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def down
|
|
|
|
|
end
|
|
|
|
|
end
|