debian-mirror-gitlab/db/migrate/20160316123110_ci_runners_token_index.rb
2018-12-23 12:14:25 +05:30

15 lines
273 B
Ruby

# rubocop:disable all
class CiRunnersTokenIndex < ActiveRecord::Migration[4.2]
disable_ddl_transaction!
def change
args = [:ci_runners, :token]
if Gitlab::Database.postgresql?
args << { algorithm: :concurrently }
end
add_index(*args)
end
end