debian-mirror-gitlab/db/migrate/20180530135500_add_index_to_stages_position.rb
2019-01-03 12:48:30 +05:30

15 lines
317 B
Ruby

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