2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2019-02-15 15:39:39 +05:30
|
|
|
class CiRunnersTokenIndex < ActiveRecord::Migration[4.2]
|
2016-06-02 11:05:42 +05:30
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
args = [:ci_runners, :token]
|
|
|
|
|
|
|
|
if Gitlab::Database.postgresql?
|
|
|
|
args << { algorithm: :concurrently }
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index(*args)
|
|
|
|
end
|
|
|
|
end
|