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

20170526185901_remove_stage_id_index_from_builds.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3879cf9133beed23f1d0e7c8f2fcf7278063af45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class RemoveStageIdIndexFromBuilds < ActiveRecord::Migration
  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