summaryrefslogtreecommitdiff
path: root/db/migrate/20170623080805_remove_ci_variables_project_id_index.rb
blob: 861dbd2ee142a8619560b041d0482d2312a33f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class RemoveCiVariablesProjectIdIndex < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    if index_exists?(:ci_variables, :project_id)
      remove_concurrent_index(:ci_variables, :project_id)
    end
  end

  def down
    unless index_exists?(:ci_variables, :project_id)
      add_concurrent_index(:ci_variables, :project_id)
    end
  end
end