summaryrefslogtreecommitdiff
path: root/db/migrate/20180530135500_add_index_to_stages_position.rb
blob: 61150f33a25624e3a98177e1f0271ba8812c279f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddIndexToStagesPosition < ActiveRecord::Migration
  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