From 157061839634d24bdb937316373f35bf1fb1f71e Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Mon, 4 Dec 2023 12:12:44 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- ...175941_index_projects_on_organization_id_and_id.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 db/post_migrate/20231202175941_index_projects_on_organization_id_and_id.rb (limited to 'db/post_migrate/20231202175941_index_projects_on_organization_id_and_id.rb') diff --git a/db/post_migrate/20231202175941_index_projects_on_organization_id_and_id.rb b/db/post_migrate/20231202175941_index_projects_on_organization_id_and_id.rb new file mode 100644 index 00000000000..a536def7ff3 --- /dev/null +++ b/db/post_migrate/20231202175941_index_projects_on_organization_id_and_id.rb @@ -0,0 +1,19 @@ +# frozen_string_literal: true + +class IndexProjectsOnOrganizationIdAndId < Gitlab::Database::Migration[2.2] + milestone '16.7' + disable_ddl_transaction! + + INDEX_NAME = "index_projects_on_organization_id_and_id" + + def up + # rubocop:disable Migration/PreventIndexCreation -- Replacing existing index + # on organization_id with an index on (organization_id, id) + add_concurrent_index :projects, [:organization_id, :id], name: INDEX_NAME + # rubocop:enable Migration/PreventIndexCreation + end + + def down + remove_concurrent_index :projects, [:organization_id, :id], name: INDEX_NAME + end +end -- cgit v1.2.3