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

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

class CleanupPopulateTopicsNonPrivateProjectsCount < Gitlab::Database::Migration[1.0]
  MIGRATION = 'PopulateTopicsNonPrivateProjectsCount'

  disable_ddl_transaction!

  def up
    finalize_background_migration(MIGRATION)
  end

  def down
    # no-op
  end
end