# frozen_string_literal: true # rubocop:disable Style/Documentation module Gitlab module BackgroundMigration class RemoveUndefinedVulnerabilitySeverityLevel def perform(start_id, stop_id) end end end end Gitlab::BackgroundMigration::RemoveUndefinedVulnerabilitySeverityLevel.prepend_if_ee('EE::Gitlab::BackgroundMigration::RemoveUndefinedVulnerabilitySeverityLevel')