Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20231202175941_index_projects_on_organization_id_and_id.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a536def7ff343bf40067622665156332b61e8796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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