Fixed merge conflicts

This commit is contained in:
Godwin
2014-07-18 20:35:15 -06:00
parent 21ec7bb82a
commit 1efe20fe42
41 changed files with 1185 additions and 105 deletions
@@ -0,0 +1,5 @@
class AddConfirmationTokenToConferenceRegistrations < ActiveRecord::Migration
def change
add_column :conference_registrations, :confirmation_token, :string
end
end
@@ -0,0 +1,5 @@
class AddDataToConferenceRegistrations < ActiveRecord::Migration
def change
add_column :conference_registrations, :data, :binary
end
end
+3 -1
View File
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20140714013645) do
ActiveRecord::Schema.define(version: 20140716002152) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -64,6 +64,8 @@ ActiveRecord::Schema.define(version: 20140714013645) do
t.boolean "is_confirmed"
t.boolean "is_participant"
t.boolean "is_volunteer"
t.string "confirmation_token"
t.binary "data"
end
create_table "conference_types", force: true do |t|