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-12-22 15:14:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-22 15:14:34 +0300
commit26fa51816ab94df9c2f3db8c93da4d57f7bd6fc4 (patch)
tree3b29671cb4bc910500d8c7db4e2694b4c012387e /db/structure.sql
parent6b0293c14dce817f72310127dd38562313321b1b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/structure.sql')
-rw-r--r--db/structure.sql5
1 files changed, 4 insertions, 1 deletions
diff --git a/db/structure.sql b/db/structure.sql
index d754b9a0671..8d7f7c2af3c 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -22718,7 +22718,8 @@ CREATE TABLE releases (
author_id integer,
name character varying,
sha character varying,
- released_at timestamp with time zone NOT NULL
+ released_at timestamp with time zone NOT NULL,
+ release_published_at timestamp with time zone
);
CREATE SEQUENCE releases_id_seq
@@ -35392,6 +35393,8 @@ CREATE INDEX partial_index_user_id_app_id_created_at_token_not_revoked ON oauth_
CREATE UNIQUE INDEX pm_checkpoints_path_components ON pm_checkpoints USING btree (purl_type, data_type, version_format);
+CREATE INDEX releases_published_at_index ON releases USING btree (release_published_at);
+
CREATE INDEX scan_finding_approval_mr_rule_index_id ON approval_merge_request_rules USING btree (id) WHERE (report_type = 4);
CREATE INDEX scan_finding_approval_mr_rule_index_merge_request_id ON approval_merge_request_rules USING btree (merge_request_id) WHERE (report_type = 4);