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

17 lines
336 B
Ruby

class AddIndexOnCiRunnersRunnerType < ActiveRecord::Migration[4.2]
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