mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
15 lines
368 B
Ruby
15 lines
368 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
class DeleteInvalidEpicIssues < BatchedMigrationJob
|
|
feature_category :database
|
|
|
|
def perform; end
|
|
end
|
|
end
|
|
end
|
|
|
|
# rubocop:disable Layout/LineLength
|
|
Gitlab::BackgroundMigration::DeleteInvalidEpicIssues.prepend_mod_with('Gitlab::BackgroundMigration::DeleteInvalidEpicIssues')
|