debian-mirror-gitlab/db/migrate/20180511090724_add_index_on_ci_runners_runner_type.rb

17 lines
331 B
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
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
2018-11-18 11:00:15 +05:30
# rubocop:disable Migration/RemoveIndex
2018-11-08 19:23:39 +05:30
remove_index :ci_runners, :runner_type
end
end