Files
gitlabhq/lib/gitlab/background_migration/fix_incomplete_external_audit_destinations.rb
2025-05-15 21:12:45 +00:00

15 lines
356 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# This batched background migration is EE-only
class FixIncompleteExternalAuditDestinations < BatchedMigrationJob
feature_category :audit_events
def perform; end
end
end
end
Gitlab::BackgroundMigration::FixIncompleteExternalAuditDestinations.prepend_mod