Registration Component
This commit is contained in:
parent
643b8b173a
commit
5c9e0a279e
19 changed files with 172 additions and 36 deletions
42
db/schema.rb
42
db/schema.rb
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20140514140013) do
|
||||
ActiveRecord::Schema.define(version: 20140523145705) do
|
||||
|
||||
create_table "answers", force: true do |t|
|
||||
t.string "title"
|
||||
|
|
@ -51,15 +51,15 @@ ActiveRecord::Schema.define(version: 20140514140013) do
|
|||
add_index "comments", ["user_id"], name: "index_comments_on_user_id"
|
||||
|
||||
create_table "conferences", force: true do |t|
|
||||
t.string "guid", null: false
|
||||
t.string "title", null: false
|
||||
t.string "short_title", null: false
|
||||
t.string "guid", null: false
|
||||
t.string "title", null: false
|
||||
t.string "short_title", null: false
|
||||
t.string "social_tag"
|
||||
t.string "contact_email", null: false
|
||||
t.string "timezone", null: false
|
||||
t.string "contact_email", null: false
|
||||
t.string "timezone", null: false
|
||||
t.string "html_export_path"
|
||||
t.date "start_date", null: false
|
||||
t.date "end_date", null: false
|
||||
t.date "start_date", null: false
|
||||
t.date "end_date", null: false
|
||||
t.integer "venue_id"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
|
|
@ -69,15 +69,18 @@ ActiveRecord::Schema.define(version: 20140514140013) do
|
|||
t.string "logo_content_type"
|
||||
t.integer "logo_file_size"
|
||||
t.datetime "logo_updated_at"
|
||||
t.boolean "use_dietary_choices", default: false
|
||||
t.boolean "use_supporter_levels", default: false
|
||||
t.boolean "use_dietary_choices", default: false
|
||||
t.boolean "use_supporter_levels", default: false
|
||||
t.integer "revision"
|
||||
t.boolean "use_vpositions", default: false
|
||||
t.boolean "use_vdays", default: false
|
||||
t.boolean "use_difficulty_levels", default: false
|
||||
t.boolean "use_vpositions", default: false
|
||||
t.boolean "use_vdays", default: false
|
||||
t.boolean "use_difficulty_levels", default: false
|
||||
t.boolean "use_volunteers"
|
||||
t.string "media_id"
|
||||
t.string "media_type"
|
||||
t.string "description"
|
||||
t.text "registration_description"
|
||||
t.text "ticket_description"
|
||||
end
|
||||
|
||||
create_table "conferences_questions", id: false, force: true do |t|
|
||||
|
|
@ -184,12 +187,12 @@ ActiveRecord::Schema.define(version: 20140514140013) do
|
|||
end
|
||||
|
||||
create_table "people", force: true do |t|
|
||||
t.string "guid", null: false
|
||||
t.string "guid", null: false
|
||||
t.string "first_name", default: ""
|
||||
t.string "last_name", default: ""
|
||||
t.string "public_name", default: ""
|
||||
t.string "company", default: ""
|
||||
t.string "email", null: false
|
||||
t.string "email", null: false
|
||||
t.boolean "email_public"
|
||||
t.string "avatar_file_name"
|
||||
t.string "avatar_content_type"
|
||||
|
|
@ -204,6 +207,7 @@ ActiveRecord::Schema.define(version: 20140514140013) do
|
|||
t.string "tshirt"
|
||||
t.string "mobile"
|
||||
t.string "languages"
|
||||
t.boolean "featured", default: false
|
||||
end
|
||||
|
||||
create_table "qanswers", force: true do |t|
|
||||
|
|
@ -287,8 +291,14 @@ ActiveRecord::Schema.define(version: 20140514140013) do
|
|||
|
||||
create_table "supporter_levels", force: true do |t|
|
||||
t.integer "conference_id"
|
||||
t.string "title", null: false
|
||||
t.string "title", null: false
|
||||
t.string "url"
|
||||
t.text "ticket_description"
|
||||
t.float "price"
|
||||
t.text "description"
|
||||
t.integer "price_cents", default: 0, null: false
|
||||
t.string "price_currency", default: "USD", null: false
|
||||
t.float "amount"
|
||||
end
|
||||
|
||||
create_table "supporter_registrations", force: true do |t|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue