summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220525131557_cleanup_backfill_integrations_enable_ssl_verification.rb
blob: 3bd4b21c6fddb5c5ea2a9b32893dac9bb450d3a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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