summaryrefslogtreecommitdiff
path: root/db/structure.sql
diff options
context:
space:
mode:
authorGitLab Release Tools Bot <delivery-team+release-tools@gitlab.com>2021-01-07 15:44:48 +0000
committerGitLab Release Tools Bot <delivery-team+release-tools@gitlab.com>2021-01-07 15:44:48 +0000
commit8a49ba59ae6337c84b76129dfefedaa164deb43d (patch)
tree2dc8f963aa9b3de573af212c67ecfa74443464a7 /db/structure.sql
parentbc82bff16f0c095533a78b1ca894f8ac3b92b2dc (diff)
parent15e305ed34e03560429db4dafcb835bd027a348f (diff)
downloadgitlab-ce-8a49ba59ae6337c84b76129dfefedaa164deb43d.tar.gz
Merge remote-tracking branch 'dev/13-7-stable' into 13-7-stable
Diffstat (limited to 'db/structure.sql')
-rw-r--r--db/structure.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/structure.sql b/db/structure.sql
index 105b7701409..6380f64c64c 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -23004,6 +23004,8 @@ CREATE INDEX tmp_build_stage_position_index ON ci_builds USING btree (stage_id,
CREATE INDEX tmp_index_for_email_unconfirmation_migration ON emails USING btree (id) WHERE (confirmed_at IS NOT NULL);
+CREATE INDEX tmp_index_oauth_applications_on_id_where_trusted ON oauth_applications USING btree (id) WHERE (trusted = true);
+
CREATE INDEX tmp_index_on_vulnerabilities_non_dismissed ON vulnerabilities USING btree (id) WHERE (state <> 2);
CREATE UNIQUE INDEX unique_merge_request_metrics_by_merge_request_id ON merge_request_metrics USING btree (merge_request_id);