Paypal Registration
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
class AddEmailToConferenceRegistrations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conference_registrations, :email, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddIsCompleteToConferenceRegistrations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conference_registrations, :complete, :boolean
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddCompletedToConferenceRegistrations < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conference_registrations, :completed, :boolean
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddPaymentConfirmationTokenToConferenceRegistration < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conference_registrations, :payment_confirmation_token, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddPaymentInfoToConferenceRegistration < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conference_registrations, :payment_info, :string
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddOrderToWorkshopStreams < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :workshop_streams, :order, :integer
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,5 @@
|
||||
class AddOrderToWorkshopPresentationStyles < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :workshop_presentation_styles, :order, :integer
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user