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

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

class AddIndexForSucceededDeployments < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'index_deployments_on_environment_id_status_and_finished_at'

  disable_ddl_transaction!

  def up
    add_concurrent_index(:deployments, %i[environment_id status finished_at], name: INDEX_NAME)
  end

  def down
    remove_concurrent_index_by_name(:deployments, INDEX_NAME)
  end
end