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

20180417101040_add_tmp_stage_priority_index_to_ci_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce4708849992a4de7d6a46b7e6d5741b0317a7ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class AddTmpStagePriorityIndexToCiBuilds < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index(:ci_builds, [:stage_id, :stage_idx],
                         where: 'stage_idx IS NOT NULL', name: 'tmp_build_stage_position_index')
  end

  def down
    remove_concurrent_index_by_name(:ci_builds, 'tmp_build_stage_position_index')
  end
end