Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
56c365bd
Commit
56c365bd
authored
Jun 14, 2019
by
Andreas Brandl
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'issue-62684' into 'master'
Issue 62684 See merge request gitlab-org/gitlab-ce!29430
parents
2ede0096
49ffcaed
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
0 deletions
+29
-0
changelogs/unreleased/62684-add-index-public-email-on-users.yml
...logs/unreleased/62684-add-index-public-email-on-users.yml
+5
-0
db/migrate/20190607190856_add_index_to_users_public_emails.rb
...igrate/20190607190856_add_index_to_users_public_emails.rb
+23
-0
db/schema.rb
db/schema.rb
+1
-0
No files found.
changelogs/unreleased/62684-add-index-public-email-on-users.yml
0 → 100644
View file @
56c365bd
---
title
:
Add index on public_email for users
merge_request
:
29430
author
:
type
:
performance
db/migrate/20190607190856_add_index_to_users_public_emails.rb
0 → 100644
View file @
56c365bd
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddIndexToUsersPublicEmails
<
ActiveRecord
::
Migration
[
5.1
]
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME
=
false
disable_ddl_transaction!
def
up
add_concurrent_index
:users
,
[
:public_email
],
where:
"public_email != ''"
end
def
down
remove_concurrent_index
:users
,
[
:public_email
],
where:
"public_email != ''"
end
end
db/schema.rb
View file @
56c365bd
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment