Minor adjustments

This commit is contained in:
Godwin
2014-07-13 17:23:28 -06:00
parent 14792c14f3
commit 62b0bea131
15 changed files with 145 additions and 57 deletions
@@ -0,0 +1,5 @@
class AddIsConfirmedToConferenceRegistraions < ActiveRecord::Migration
def change
add_column :conference_registrations, :is_confirmed, :boolean
end
end
@@ -0,0 +1,5 @@
class AddIsParticipantToConferenceRegistraions < ActiveRecord::Migration
def change
add_column :conference_registrations, :is_participant, :boolean
end
end
@@ -0,0 +1,5 @@
class AddIsVolunteerToConferenceRegistraions < ActiveRecord::Migration
def change
add_column :conference_registrations, :is_volunteer, :boolean
end
end