summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb
blob: de473e7bb916932aea7f5b7d9baeec9622285ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class RemoveStageIdIndexFromBuilds < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    if index_exists?(:ci_builds, :stage_id)
      remove_foreign_key(:ci_builds, column: :stage_id)
      remove_concurrent_index(:ci_builds, :stage_id)
    end
  end

  def down
    # noop
  end
end