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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-10-20 06:08:06 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-20 06:08:06 +0300
commit400c252e34e0d5810214f27cc623aaa28c028755 (patch)
tree0b4eba2b86f706ce97d0561124c461166dc43ed7 /db/structure.sql
parent1533e64a2ca36d119ba2f229f591e4b50c436338 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/structure.sql')
-rw-r--r--db/structure.sql2
1 files changed, 0 insertions, 2 deletions
diff --git a/db/structure.sql b/db/structure.sql
index 19118596100..b3c588e5ba5 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -33228,8 +33228,6 @@ CREATE INDEX index_namespaces_on_require_two_factor_authentication ON namespaces
CREATE UNIQUE INDEX index_namespaces_on_runners_token_encrypted ON namespaces USING btree (runners_token_encrypted);
-CREATE INDEX index_namespaces_on_shared_and_extra_runners_minutes_limit ON namespaces USING btree (shared_runners_minutes_limit, extra_shared_runners_minutes_limit);
-
CREATE INDEX index_namespaces_on_traversal_ids ON namespaces USING gin (traversal_ids);
CREATE INDEX index_namespaces_on_traversal_ids_for_groups ON namespaces USING gin (traversal_ids) WHERE ((type)::text = 'Group'::text);