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

20230712052619_drop_index_deployments_on_project_id_and_status.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c76b73dcdcf34e30068092d32d17e607243c103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class DropIndexDeploymentsOnProjectIdAndStatus < Gitlab::Database::Migration[2.1]
  INDEX_NAME = 'index_deployments_on_project_id_and_status'

  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name :deployments, name: INDEX_NAME
  end

  def down
    # This is based on the following `CREATE INDEX` command in db/init_structure.sql:
    # CREATE INDEX index_deployments_on_project_id_and_status ON deployments
    #   USING btree (project_id, status)
    add_concurrent_index :deployments, %i[project_id status], name: INDEX_NAME
  end
end