debian-mirror-gitlab/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb
2018-11-08 19:23:39 +05:30

16 lines
287 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
remove_index :ci_runners, :runner_type
end
end