Email testing support, added Gemfile.lock and compiled bumbleberry assets to gitignore.
This commit is contained in:
+79
-79
@@ -17,9 +17,9 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
enable_extension "plpgsql"
|
||||
|
||||
create_table "authentications", force: :cascade do |t|
|
||||
t.integer "user_id", null: false
|
||||
t.string "provider", limit: 255, null: false
|
||||
t.string "uid", limit: 255, null: false
|
||||
t.integer "user_id", null: false
|
||||
t.string "provider", null: false
|
||||
t.string "uid", null: false
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
@@ -58,19 +58,19 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
create_table "conference_registrations", force: :cascade do |t|
|
||||
t.integer "conference_id"
|
||||
t.integer "user_id"
|
||||
t.string "is_attending", limit: 255
|
||||
t.string "is_attending"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.boolean "is_confirmed"
|
||||
t.boolean "is_participant"
|
||||
t.boolean "is_volunteer"
|
||||
t.string "confirmation_token", limit: 255
|
||||
t.string "confirmation_token"
|
||||
t.binary "data"
|
||||
t.string "email", limit: 255
|
||||
t.string "email"
|
||||
t.boolean "complete"
|
||||
t.boolean "completed"
|
||||
t.string "payment_confirmation_token", limit: 255
|
||||
t.string "payment_info", limit: 255
|
||||
t.string "payment_confirmation_token"
|
||||
t.string "payment_info"
|
||||
t.integer "registration_fees_paid"
|
||||
t.string "city"
|
||||
t.datetime "arrival"
|
||||
@@ -84,21 +84,21 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
end
|
||||
|
||||
create_table "conference_types", force: :cascade do |t|
|
||||
t.string "title", limit: 255
|
||||
t.string "info", limit: 255
|
||||
t.string "title"
|
||||
t.string "info"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "slug", limit: 255
|
||||
t.string "slug"
|
||||
end
|
||||
|
||||
create_table "conferences", force: :cascade do |t|
|
||||
t.string "title", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "title"
|
||||
t.string "slug"
|
||||
t.datetime "start_date"
|
||||
t.datetime "end_date"
|
||||
t.text "info"
|
||||
t.string "poster", limit: 255
|
||||
t.string "cover", limit: 255
|
||||
t.string "poster"
|
||||
t.string "cover"
|
||||
t.boolean "workshop_schedule_published"
|
||||
t.boolean "registration_open"
|
||||
t.boolean "meals_provided"
|
||||
@@ -111,8 +111,8 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
t.text "registration_info"
|
||||
t.text "postregistration_info"
|
||||
t.integer "cover_attribution_id"
|
||||
t.string "cover_attribution_name", limit: 255
|
||||
t.string "cover_attribution_src", limit: 255
|
||||
t.string "cover_attribution_name"
|
||||
t.string "cover_attribution_src"
|
||||
t.integer "cover_attribution_user_id"
|
||||
t.string "locale"
|
||||
t.string "email_address"
|
||||
@@ -158,15 +158,15 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
end
|
||||
|
||||
create_table "event_types", force: :cascade do |t|
|
||||
t.string "slug", limit: 255
|
||||
t.string "slug"
|
||||
t.text "info"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "events", force: :cascade do |t|
|
||||
t.string "title", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "title"
|
||||
t.string "slug"
|
||||
t.integer "event_type_id"
|
||||
t.integer "conference_id"
|
||||
t.text "info"
|
||||
@@ -178,16 +178,16 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
end
|
||||
|
||||
create_table "locations", force: :cascade do |t|
|
||||
t.string "title", limit: 255
|
||||
t.string "title"
|
||||
t.float "latitude"
|
||||
t.float "longitude"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "country", limit: 255
|
||||
t.string "territory", limit: 255
|
||||
t.string "city", limit: 255
|
||||
t.string "street", limit: 255
|
||||
t.string "postal_code", limit: 255
|
||||
t.string "country"
|
||||
t.string "territory"
|
||||
t.string "city"
|
||||
t.string "street"
|
||||
t.string "postal_code"
|
||||
end
|
||||
|
||||
add_index "locations", ["latitude", "longitude"], name: "index_locations_on_latitude_and_longitude", using: :btree
|
||||
@@ -200,50 +200,50 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
add_index "locations_organizations", ["organization_id", "location_id"], name: "loc_org_index", using: :btree
|
||||
|
||||
create_table "organization_statuses", force: :cascade do |t|
|
||||
t.string "name", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "info", limit: 255
|
||||
t.string "name"
|
||||
t.string "slug"
|
||||
t.string "info"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "organizations", force: :cascade do |t|
|
||||
t.string "name", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "email_address", limit: 255
|
||||
t.string "url", limit: 255
|
||||
t.string "name"
|
||||
t.string "slug"
|
||||
t.string "email_address"
|
||||
t.string "url"
|
||||
t.integer "year_founded"
|
||||
t.text "info"
|
||||
t.string "logo", limit: 255
|
||||
t.string "avatar", limit: 255
|
||||
t.string "logo"
|
||||
t.string "avatar"
|
||||
t.boolean "requires_approval"
|
||||
t.string "secret_question", limit: 255
|
||||
t.string "secret_answer", limit: 255
|
||||
t.string "secret_question"
|
||||
t.string "secret_answer"
|
||||
t.integer "user_organization_replationship_id"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "cover", limit: 255
|
||||
t.string "cover"
|
||||
t.integer "cover_attribution_id"
|
||||
t.string "cover_attribution_name", limit: 255
|
||||
t.string "cover_attribution_src", limit: 255
|
||||
t.string "phone", limit: 255
|
||||
t.string "cover_attribution_name"
|
||||
t.string "cover_attribution_src"
|
||||
t.string "phone"
|
||||
t.integer "organization_status_id"
|
||||
t.integer "cover_attribution_user_id"
|
||||
end
|
||||
|
||||
create_table "registration_form_fields", force: :cascade do |t|
|
||||
t.string "title", limit: 255
|
||||
t.string "title"
|
||||
t.text "help"
|
||||
t.boolean "required"
|
||||
t.string "field_type", limit: 255
|
||||
t.string "options", limit: 255
|
||||
t.string "field_type"
|
||||
t.string "options"
|
||||
t.boolean "is_retired"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "sessions", force: :cascade do |t|
|
||||
t.string "session_id", limit: 255, null: false
|
||||
t.string "session_id", null: false
|
||||
t.text "data"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
@@ -261,11 +261,11 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
end
|
||||
|
||||
create_table "translations", force: :cascade do |t|
|
||||
t.string "locale", limit: 255
|
||||
t.string "key", limit: 255
|
||||
t.string "locale"
|
||||
t.string "key"
|
||||
t.text "value"
|
||||
t.text "interpolations"
|
||||
t.boolean "is_proc", default: false
|
||||
t.boolean "is_proc", default: false
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
@@ -273,34 +273,34 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
create_table "user_organization_relationships", force: :cascade do |t|
|
||||
t.integer "user_id"
|
||||
t.integer "organization_id"
|
||||
t.string "relationship", limit: 255
|
||||
t.string "relationship"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "users", force: :cascade do |t|
|
||||
t.string "username"
|
||||
t.string "email", limit: 255
|
||||
t.string "crypted_password", limit: 255
|
||||
t.string "salt", limit: 255
|
||||
t.string "email"
|
||||
t.string "crypted_password"
|
||||
t.string "salt"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.string "remember_me_token", limit: 255
|
||||
t.string "remember_me_token"
|
||||
t.datetime "remember_me_token_expires_at"
|
||||
t.string "reset_password_token", limit: 255
|
||||
t.string "reset_password_token"
|
||||
t.datetime "reset_password_token_expires_at"
|
||||
t.datetime "reset_password_email_sent_at"
|
||||
t.string "activation_state", limit: 255
|
||||
t.string "activation_token", limit: 255
|
||||
t.string "activation_state"
|
||||
t.string "activation_token"
|
||||
t.datetime "activation_token_expires_at"
|
||||
t.integer "failed_logins_count", default: 0
|
||||
t.integer "failed_logins_count", default: 0
|
||||
t.datetime "lock_expires_at"
|
||||
t.string "unlock_token", limit: 255
|
||||
t.string "avatar", limit: 255
|
||||
t.string "unlock_token"
|
||||
t.string "avatar"
|
||||
t.text "about_me"
|
||||
t.string "role", limit: 255
|
||||
t.string "firstname", limit: 255
|
||||
t.string "lastname", limit: 255
|
||||
t.string "role"
|
||||
t.string "firstname"
|
||||
t.string "lastname"
|
||||
t.boolean "is_translator"
|
||||
end
|
||||
|
||||
@@ -309,27 +309,27 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", using: :btree
|
||||
|
||||
create_table "versions", force: :cascade do |t|
|
||||
t.string "item_type", limit: 255
|
||||
t.string "item_type"
|
||||
t.integer "item_id"
|
||||
t.string "event", limit: 255
|
||||
t.string "whodunnit", limit: 255
|
||||
t.string "event"
|
||||
t.string "whodunnit"
|
||||
t.text "object"
|
||||
t.datetime "created_at"
|
||||
t.string "value", limit: 255
|
||||
t.string "value"
|
||||
end
|
||||
|
||||
create_table "workshop_facilitators", force: :cascade do |t|
|
||||
t.integer "user_id"
|
||||
t.integer "workshop_id"
|
||||
t.string "role", limit: 255
|
||||
t.string "role"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "workshop_presentation_styles", force: :cascade do |t|
|
||||
t.string "name", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "info", limit: 255
|
||||
t.string "name"
|
||||
t.string "slug"
|
||||
t.string "info"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "order"
|
||||
@@ -338,31 +338,31 @@ ActiveRecord::Schema.define(version: 20150821005002) do
|
||||
create_table "workshop_requested_resources", force: :cascade do |t|
|
||||
t.integer "workshop_id"
|
||||
t.integer "workshop_resource_id"
|
||||
t.string "status", limit: 255
|
||||
t.string "status"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "workshop_resources", force: :cascade do |t|
|
||||
t.string "name", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "info", limit: 255
|
||||
t.string "name"
|
||||
t.string "slug"
|
||||
t.string "info"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
end
|
||||
|
||||
create_table "workshop_streams", force: :cascade do |t|
|
||||
t.string "name", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "info", limit: 255
|
||||
t.string "name"
|
||||
t.string "slug"
|
||||
t.string "info"
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "order"
|
||||
end
|
||||
|
||||
create_table "workshops", force: :cascade do |t|
|
||||
t.string "title", limit: 255
|
||||
t.string "slug", limit: 255
|
||||
t.string "title"
|
||||
t.string "slug"
|
||||
t.text "info"
|
||||
t.integer "conference_id"
|
||||
t.integer "workshop_stream_id"
|
||||
|
||||
Reference in New Issue
Block a user