2022-07-23 23:45:48 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module BackgroundMigration
|
|
|
|
# rubocop: disable Style/Documentation
|
|
|
|
class DeleteInvalidEpicIssues < BatchedMigrationJob
|
2023-03-17 16:20:25 +05:30
|
|
|
feature_category :database
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def perform
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# rubocop:disable Layout/LineLength
|
|
|
|
Gitlab::BackgroundMigration::DeleteInvalidEpicIssues.prepend_mod_with('Gitlab::BackgroundMigration::DeleteInvalidEpicIssues')
|