Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryguo <yguo@gitlab.com>2019-06-10 16:44:55 +0300
committeryguo <yguo@gitlab.com>2019-06-13 17:51:32 +0300
commit73b67346760ecaddfbd2a3da8d852a722a0efa56 (patch)
treed09944b4e8e22ceeeb63d5782319a728a86bf9b3 /db/schema.rb
parent0a70ba177e4589733659dd5af85402d0a3081026 (diff)
Add index on public_emails for users table
Clean up issue-62684 Update issue-62684 changelog Update down migrate for issue-62684
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 392edf89430..86a099d28b2 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -2388,6 +2388,7 @@ ActiveRecord::Schema.define(version: 20190611161641) do
t.index ["incoming_email_token"], name: "index_users_on_incoming_email_token", using: :btree
t.index ["name"], name: "index_users_on_name", using: :btree
t.index ["name"], name: "index_users_on_name_trigram", using: :gin, opclasses: {"name"=>"gin_trgm_ops"}
+ t.index ["public_email"], name: "index_users_on_public_email", where: "((public_email)::text <> ''::text)", using: :btree
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
t.index ["state"], name: "index_users_on_state", using: :btree
t.index ["username"], name: "index_users_on_username", using: :btree