gitlab-ce/lib/gitlab/background_migration/delete_approval_rules_with_...

19 lines
534 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# This class doesn't delete approval rules
# as this feature exists only in EE
class DeleteApprovalRulesWithVulnerability < BatchedMigrationJob
feature_category :database
def perform
end
end
end
end
# rubocop:disable Layout/LineLength
Gitlab::BackgroundMigration::DeleteApprovalRulesWithVulnerability.prepend_mod_with('Gitlab::BackgroundMigration::DeleteApprovalRulesWithVulnerability')
# rubocop:enable Layout/LineLength