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

20170621102400_add_stage_id_index_to_builds.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d6609b18bf36243088fe6048535080f0b05314a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class AddStageIdIndexToBuilds < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless index_exists?(:ci_builds, :stage_id)
      add_concurrent_foreign_key(:ci_builds, :ci_stages, column: :stage_id, on_delete: :cascade)
      add_concurrent_index(:ci_builds, :stage_id)
    end
  end

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