summaryrefslogtreecommitdiff
path: root/db/migrate/20190826090628_remove_redundant_deployments_index.rb
blob: 6b009c17d6461fe9ab91eddf20d075f3f3e5d87e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class RemoveRedundantDeploymentsIndex < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  disable_ddl_transaction!

  def up
    remove_concurrent_index :deployments, :cluster_id
  end

  def down
    add_concurrent_index :deployments, :cluster_id
  end
end