summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/second_recount_epic_cache_counts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/background_migration/second_recount_epic_cache_counts.rb')
-rw-r--r--lib/gitlab/background_migration/second_recount_epic_cache_counts.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/gitlab/background_migration/second_recount_epic_cache_counts.rb b/lib/gitlab/background_migration/second_recount_epic_cache_counts.rb
new file mode 100644
index 00000000000..4d7c4a682a9
--- /dev/null
+++ b/lib/gitlab/background_migration/second_recount_epic_cache_counts.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module BackgroundMigration
+ # rubocop: disable Style/Documentation
+ class SecondRecountEpicCacheCounts < Gitlab::BackgroundMigration::BatchedMigrationJob
+ feature_category :database
+
+ 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::SecondRecountEpicCacheCounts.prepend_mod_with('Gitlab::BackgroundMigration::BackfillEpicCacheCounts')
+# rubocop: enable Layout/LineLength