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-15 06:08:03 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-15 06:08:03 +0300
commit00880613328c66f85aee755fcd1e70ce4cb9fcdf (patch)
treea4abf7a4c00248d865dba9775482cd90f8467bfd /db/structure.sql
parent45465a1f217b65ee3b11870175f363afaf912eb9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'db/structure.sql')
-rw-r--r--db/structure.sql3
1 files changed, 0 insertions, 3 deletions
diff --git a/db/structure.sql b/db/structure.sql
index e445a6e1f77..d3d18beb466 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -15997,7 +15997,6 @@ CREATE TABLE deployments (
on_stop character varying,
status smallint NOT NULL,
finished_at timestamp with time zone,
- cluster_id integer,
deployable_id bigint,
archived boolean DEFAULT false NOT NULL
);
@@ -32705,8 +32704,6 @@ CREATE INDEX index_deployments_for_visible_scope ON deployments USING btree (env
CREATE INDEX index_deployments_on_archived_project_id_iid ON deployments USING btree (archived, project_id, iid);
-CREATE INDEX index_deployments_on_cluster_id_and_status ON deployments USING btree (cluster_id, status);
-
CREATE INDEX index_deployments_on_created_at ON deployments USING btree (created_at);
CREATE INDEX index_deployments_on_deployable_type_and_deployable_id ON deployments USING btree (deployable_type, deployable_id);