Commit df6a2d42 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Add temporary build stage priority partial index

parent c9dc5111
class AddTmpStagePriorityIndexToCiBuilds < ActiveRecord::Migration
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_priority_index')
end
def down
remove_concurrent_index_by_name(:ci_builds, 'tmp_build_stage_priority_index')
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment