Registration working until workshops
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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
|
||||
@@ -0,0 +1,7 @@
|
||||
class AddPaypalInfoToConferences < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conferences, :paypal_username, :string
|
||||
add_column :conferences, :paypal_password, :string
|
||||
add_column :conferences, :paypal_signature, :string
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user