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

19 lines
375 B
Ruby

# rubocop:disable RemoveIndex
class AddIndexToCiRunnersForIsShared < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :ci_runners, :is_shared
end
def down
if index_exists?(:ci_runners, :is_shared)
remove_index :ci_runners, :is_shared
end
end
end