2018-11-22 14:48:54 -05:00
|
|
|
# This file is auto-generated from the current state of the database. Instead
|
|
|
|
# of editing this file, please use the migrations feature of Active Record to
|
|
|
|
# incrementally modify your database, and then regenerate this schema definition.
|
|
|
|
#
|
2019-01-30 22:04:42 -05:00
|
|
|
# This file is the source Rails uses to define your schema when running `rails
|
|
|
|
# db:schema:load`. When creating a new database, `rails db:schema:load` tends to
|
|
|
|
# be faster and is potentially less error prone than running all of your
|
|
|
|
# migrations from scratch. Old migrations may fail to apply correctly if those
|
|
|
|
# migrations use external dependencies or application code.
|
2018-11-22 14:48:54 -05:00
|
|
|
#
|
|
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
|
2019-03-24 13:27:18 -04:00
|
|
|
ActiveRecord::Schema.define(version: 2019_03_24_172539) do
|
2018-11-22 14:48:54 -05:00
|
|
|
|
|
|
|
# These are extensions that must be enabled in order to support this database
|
|
|
|
enable_extension "plpgsql"
|
|
|
|
|
2018-12-01 21:28:34 -05:00
|
|
|
create_table "account_roles", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.bigint "account_id", null: false
|
|
|
|
t.bigint "role_id", null: false
|
2019-02-01 23:18:22 -05:00
|
|
|
t.datetime "deleted_at"
|
2019-02-08 01:42:32 -05:00
|
|
|
t.datetime "expires_at"
|
2018-12-01 21:28:34 -05:00
|
|
|
t.index ["account_id", "role_id"], name: "index_account_roles_on_account_id_and_role_id", unique: true
|
|
|
|
t.index ["account_id"], name: "index_account_roles_on_account_id"
|
|
|
|
t.index ["role_id"], name: "index_account_roles_on_role_id"
|
|
|
|
end
|
|
|
|
|
2018-12-01 21:03:19 -05:00
|
|
|
create_table "accounts", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2018-12-09 21:52:34 -05:00
|
|
|
t.string "guest_token", null: false
|
2018-12-09 22:36:09 -05:00
|
|
|
t.bigint "person_id"
|
2019-01-31 20:21:39 -05:00
|
|
|
t.string "username", null: false
|
2019-01-31 23:02:51 -05:00
|
|
|
t.text "biography"
|
2019-02-01 16:46:57 -05:00
|
|
|
t.string "public_name"
|
2018-12-09 22:36:09 -05:00
|
|
|
t.index ["person_id"], name: "index_accounts_on_person_id", unique: true
|
2018-12-01 21:03:19 -05:00
|
|
|
end
|
|
|
|
|
2018-11-29 21:52:41 -05:00
|
|
|
create_table "active_storage_attachments", force: :cascade do |t|
|
|
|
|
t.string "name", null: false
|
|
|
|
t.string "record_type", null: false
|
|
|
|
t.bigint "record_id", null: false
|
|
|
|
t.bigint "blob_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
|
|
|
|
t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
|
|
|
|
end
|
|
|
|
|
|
|
|
create_table "active_storage_blobs", force: :cascade do |t|
|
|
|
|
t.string "key", null: false
|
|
|
|
t.string "filename", null: false
|
|
|
|
t.string "content_type"
|
|
|
|
t.text "metadata"
|
|
|
|
t.bigint "byte_size", null: false
|
|
|
|
t.string "checksum", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
|
|
|
|
end
|
|
|
|
|
2018-11-30 11:32:43 -05:00
|
|
|
create_table "country_states", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.string "name", null: false
|
|
|
|
t.index ["name"], name: "index_country_states_on_name", unique: true
|
|
|
|
end
|
|
|
|
|
2018-12-06 14:38:53 -05:00
|
|
|
create_table "membership_apps", force: :cascade do |t|
|
2018-11-26 08:39:32 -05:00
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.string "first_name", null: false
|
|
|
|
t.string "last_name", null: false
|
2018-11-26 09:14:27 -05:00
|
|
|
t.string "middle_name"
|
2018-11-26 11:34:42 -05:00
|
|
|
t.date "date_of_birth", null: false
|
2018-11-26 11:53:04 -05:00
|
|
|
t.string "occupation"
|
2018-11-28 08:09:23 -05:00
|
|
|
t.string "email", null: false
|
|
|
|
t.string "phone_number", null: false
|
|
|
|
t.string "telegram_username"
|
2018-11-28 08:16:53 -05:00
|
|
|
t.text "organization_membership"
|
2018-11-28 08:11:39 -05:00
|
|
|
t.text "comment"
|
2018-12-01 13:55:36 -05:00
|
|
|
t.bigint "country_state_id"
|
2018-12-02 05:54:56 -05:00
|
|
|
t.bigint "account_id", null: false
|
2018-12-13 00:36:00 -05:00
|
|
|
t.index ["account_id"], name: "index_membership_apps_on_account_id", unique: true
|
2018-12-06 14:38:53 -05:00
|
|
|
t.index ["country_state_id"], name: "index_membership_apps_on_country_state_id"
|
2018-11-26 08:39:32 -05:00
|
|
|
end
|
|
|
|
|
2018-11-30 03:13:54 -05:00
|
|
|
create_table "passport_confirmations", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.bigint "passport_id", null: false
|
2018-12-01 21:28:34 -05:00
|
|
|
t.bigint "account_id", null: false
|
|
|
|
t.index ["account_id"], name: "index_passport_confirmations_on_account_id"
|
|
|
|
t.index ["passport_id", "account_id"], name: "index_passport_confirmations_on_passport_id_and_account_id", unique: true
|
2018-11-30 03:13:54 -05:00
|
|
|
t.index ["passport_id"], name: "index_passport_confirmations_on_passport_id"
|
|
|
|
end
|
|
|
|
|
2018-12-02 09:16:16 -05:00
|
|
|
create_table "passport_maps", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.string "surname", null: false
|
|
|
|
t.string "given_name", null: false
|
|
|
|
t.string "patronymic"
|
|
|
|
t.integer "sex", null: false
|
|
|
|
t.date "date_of_birth", null: false
|
|
|
|
t.string "place_of_birth", null: false
|
|
|
|
t.integer "series", null: false
|
|
|
|
t.integer "number", null: false
|
|
|
|
t.text "issued_by", null: false
|
|
|
|
t.string "unit_code", null: false
|
|
|
|
t.date "date_of_issue", null: false
|
2018-12-02 15:29:39 -05:00
|
|
|
t.bigint "passport_id", null: false
|
|
|
|
t.index ["passport_id"], name: "index_passport_maps_on_passport_id"
|
2018-12-02 09:16:16 -05:00
|
|
|
end
|
|
|
|
|
2018-11-29 20:19:38 -05:00
|
|
|
create_table "passports", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2018-11-30 04:02:05 -05:00
|
|
|
t.boolean "confirmed", default: false, null: false
|
2019-01-30 22:04:42 -05:00
|
|
|
t.bigint "person_id"
|
|
|
|
t.index ["person_id"], name: "index_passports_on_person_id"
|
2018-11-29 20:19:38 -05:00
|
|
|
end
|
|
|
|
|
2018-12-09 22:32:35 -05:00
|
|
|
create_table "people", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2018-12-14 23:09:43 -05:00
|
|
|
t.bigint "regional_office_id"
|
2018-12-15 00:51:44 -05:00
|
|
|
t.date "supporter_since"
|
2019-01-28 20:42:25 -05:00
|
|
|
t.date "member_since"
|
2019-01-28 21:13:25 -05:00
|
|
|
t.date "excluded_since"
|
2018-12-14 23:09:43 -05:00
|
|
|
t.index ["regional_office_id"], name: "index_people_on_regional_office_id"
|
2018-12-09 22:32:35 -05:00
|
|
|
end
|
|
|
|
|
2018-12-06 17:49:50 -05:00
|
|
|
create_table "regional_offices", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.bigint "country_state_id", null: false
|
|
|
|
t.index ["country_state_id"], name: "index_regional_offices_on_country_state_id", unique: true
|
|
|
|
end
|
|
|
|
|
2018-11-29 18:26:48 -05:00
|
|
|
create_table "roles", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2018-12-05 20:48:13 -05:00
|
|
|
t.string "name", null: false
|
2018-11-29 18:26:48 -05:00
|
|
|
t.string "resource_type"
|
|
|
|
t.bigint "resource_id"
|
|
|
|
t.index ["name", "resource_type", "resource_id"], name: "index_roles_on_name_and_resource_type_and_resource_id", unique: true
|
|
|
|
t.index ["resource_type", "resource_id"], name: "index_roles_on_resource_type_and_resource_id"
|
|
|
|
end
|
|
|
|
|
2018-12-03 22:08:33 -05:00
|
|
|
create_table "user_omniauths", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.bigint "user_id"
|
|
|
|
t.string "provider", null: false
|
|
|
|
t.string "remote_id", null: false
|
|
|
|
t.string "email", null: false
|
|
|
|
t.index ["remote_id", "provider"], name: "index_user_omniauths_on_remote_id_and_provider", unique: true
|
|
|
|
t.index ["user_id"], name: "index_user_omniauths_on_user_id"
|
|
|
|
end
|
|
|
|
|
2018-11-29 15:57:57 -05:00
|
|
|
create_table "users", force: :cascade do |t|
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.string "email", default: "", null: false
|
|
|
|
t.string "encrypted_password", default: "", null: false
|
|
|
|
t.string "reset_password_token"
|
|
|
|
t.datetime "reset_password_sent_at"
|
|
|
|
t.datetime "remember_created_at"
|
|
|
|
t.integer "sign_in_count", default: 0, null: false
|
|
|
|
t.datetime "current_sign_in_at"
|
|
|
|
t.datetime "last_sign_in_at"
|
|
|
|
t.inet "current_sign_in_ip"
|
|
|
|
t.inet "last_sign_in_ip"
|
|
|
|
t.string "confirmation_token"
|
|
|
|
t.datetime "confirmed_at"
|
|
|
|
t.datetime "confirmation_sent_at"
|
|
|
|
t.string "unconfirmed_email"
|
|
|
|
t.integer "failed_attempts", default: 0, null: false
|
|
|
|
t.string "unlock_token"
|
|
|
|
t.datetime "locked_at"
|
2018-12-01 21:50:10 -05:00
|
|
|
t.bigint "account_id", null: false
|
|
|
|
t.index ["account_id"], name: "index_users_on_account_id", unique: true
|
2018-11-29 15:57:57 -05:00
|
|
|
t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true
|
|
|
|
t.index ["email"], name: "index_users_on_email", unique: true
|
|
|
|
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
|
|
|
t.index ["unlock_token"], name: "index_users_on_unlock_token", unique: true
|
|
|
|
end
|
|
|
|
|
2018-12-01 21:28:34 -05:00
|
|
|
add_foreign_key "account_roles", "accounts"
|
|
|
|
add_foreign_key "account_roles", "roles"
|
2018-12-09 22:36:09 -05:00
|
|
|
add_foreign_key "accounts", "people"
|
2018-12-06 14:38:53 -05:00
|
|
|
add_foreign_key "membership_apps", "accounts"
|
|
|
|
add_foreign_key "membership_apps", "country_states"
|
2018-12-01 21:28:34 -05:00
|
|
|
add_foreign_key "passport_confirmations", "accounts"
|
2018-11-30 03:13:54 -05:00
|
|
|
add_foreign_key "passport_confirmations", "passports"
|
2018-12-02 09:16:16 -05:00
|
|
|
add_foreign_key "passport_maps", "passports"
|
2019-01-30 22:04:42 -05:00
|
|
|
add_foreign_key "passports", "people"
|
2018-12-14 23:09:43 -05:00
|
|
|
add_foreign_key "people", "regional_offices"
|
2018-12-06 17:49:50 -05:00
|
|
|
add_foreign_key "regional_offices", "country_states"
|
2018-12-03 22:08:33 -05:00
|
|
|
add_foreign_key "user_omniauths", "users"
|
2018-12-01 21:50:10 -05:00
|
|
|
add_foreign_key "users", "accounts"
|
2018-11-22 14:48:54 -05:00
|
|
|
end
|