debian-mirror-gitlab/db/post_migrate/20220525131557_cleanup_backfill_integrations_enable_ssl_verification.rb
2022-07-23 20:15:48 +02:00

16 lines
302 B
Ruby

# frozen_string_literal: true
class CleanupBackfillIntegrationsEnableSslVerification < Gitlab::Database::Migration[2.0]
disable_ddl_transaction!
MIGRATION = 'BackfillIntegrationsEnableSslVerification'
def up
finalize_background_migration(MIGRATION)
end
def down
# no-op
end
end