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

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

class DropIndexSuccessfulDeploymentsOnClusterIdAndEnvironmentId < Gitlab::Database::Migration[2.1]
  INDEX_NAME = 'index_successful_deployments_on_cluster_id_and_environment_id'

  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_successful_deployments_on_cluster_id_and_environment_id ON deployments
    #   USING btree (cluster_id, environment_id) WHERE (status = 2);
    add_concurrent_index :deployments, %i[cluster_id environment_id], name: INDEX_NAME, where: 'status = 2'
  end
end