Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220225133705_cleanup_backfill_ci_queuing_tables.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fcf8a287277af0b38dbb01f668074a81fec5bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class CleanupBackfillCiQueuingTables < Gitlab::Database::Migration[1.0]
  MIGRATION = 'BackfillCiQueuingTables'

  disable_ddl_transaction!

  def up
    finalize_background_migration(MIGRATION)
  end

  def down
    # no-op
  end
end