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

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

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

  DOWNTIME = false

  disable_ddl_transaction!

  INDEX_NAME = 'index_services_on_project_id_and_type'

  # Replaced by the index added in 20210126091713_add_unique_index_services_project_id_and_type.rb
  def up
    remove_concurrent_index_by_name :services, name: INDEX_NAME
  end

  def down
    add_concurrent_index :services, [:project_id, :type], name: INDEX_NAME
  end
end