debian-mirror-gitlab/db/migrate/20180530135500_add_index_to_stages_position.rb
2019-02-15 15:39:39 +05:30

16 lines
322 B
Ruby

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