Registration working until workshops

This commit is contained in:
Godwin
2015-08-04 21:54:04 -07:00
parent bbebefd6bf
commit 9da5f6a223
27 changed files with 1159 additions and 206 deletions
@@ -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
+10 -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: 20150412203357) do
ActiveRecord::Schema.define(version: 20150804032547) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -72,6 +72,12 @@ ActiveRecord::Schema.define(version: 20150412203357) do
t.string "payment_confirmation_token", limit: 255
t.string "payment_info", limit: 255
t.integer "registration_fees_paid"
t.string "city"
t.datetime "arrival"
t.datetime "departure"
t.string "housing"
t.string "bike"
t.text "other"
end
create_table "conference_types", force: :cascade do |t|
@@ -108,6 +114,9 @@ ActiveRecord::Schema.define(version: 20150412203357) do
t.string "locale"
t.string "email_address"
t.string "paypal_email_address"
t.string "paypal_username"
t.string "paypal_password"
t.string "paypal_signature"
end
create_table "dynamic_translation_records", force: :cascade do |t|