summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/recount_epic_cache_counts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/background_migration/recount_epic_cache_counts.rb')
-rw-r--r--lib/gitlab/background_migration/recount_epic_cache_counts.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/gitlab/background_migration/recount_epic_cache_counts.rb b/lib/gitlab/background_migration/recount_epic_cache_counts.rb
new file mode 100644
index 00000000000..42f84a33a5a
--- /dev/null
+++ b/lib/gitlab/background_migration/recount_epic_cache_counts.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module BackgroundMigration
+ # rubocop: disable Style/Documentation
+ class RecountEpicCacheCounts < Gitlab::BackgroundMigration::BatchedMigrationJob
+ def perform; end
+ end
+ # rubocop: enable Style/Documentation
+ end
+end
+
+# rubocop: disable Layout/LineLength
+# we just want to re-enqueue the previous BackfillEpicCacheCounts migration,
+# because it's a EE-only migation and it's a module, we just prepend new
+# RecountEpicCacheCounts with existing batched migration module (which is same in both cases)
+Gitlab::BackgroundMigration::RecountEpicCacheCounts.prepend_mod_with('Gitlab::BackgroundMigration::BackfillEpicCacheCounts')
+# rubocop: enable Layout/LineLength