98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
14 lines
268 B
Ruby
14 lines
268 B
Ruby
# rubocop:disable all
|
|
class CiRunnersTokenIndex < ActiveRecord::Migration
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
args = [:ci_runners, :token]
|
|
|
|
if Gitlab::Database.postgresql?
|
|
args << { algorithm: :concurrently }
|
|
end
|
|
|
|
add_index(*args)
|
|
end
|
|
end
|