debian-mirror-gitlab/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb
2018-11-18 11:00:15 +05:30

17 lines
331 B
Ruby

class AddIndexOnCiRunnersRunnerType < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :ci_runners, :runner_type
end
def down
# rubocop:disable Migration/RemoveIndex
remove_index :ci_runners, :runner_type
end
end