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

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_stages, [:pipeline_id, :position]
  end

  def down
    remove_concurrent_index :ci_stages, [:pipeline_id, :position]
  end
end