You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
444 B
10 lines
444 B
class AddCityToConferenceRegistrations < ActiveRecord::Migration
|
|
def change
|
|
add_column :conference_registrations, :city, :string
|
|
add_column :conference_registrations, :arrival, :datetime
|
|
add_column :conference_registrations, :departure, :datetime
|
|
add_column :conference_registrations, :housing, :string
|
|
add_column :conference_registrations, :bike, :string
|
|
add_column :conference_registrations, :other, :text
|
|
end
|
|
end
|
|
|