debian-mirror-gitlab/db/migrate/20180530135500_add_index_to_stages_position.rb

16 lines
317 B
Ruby
Raw Normal View History

2019-01-03 12:48:30 +05:30
class AddIndexToStagesPosition < ActiveRecord::Migration
2018-11-08 19:23:39 +05:30
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