# frozen_string_literal: true module Gitlab module BackgroundMigration # This class updates vulnerability feedback entities with no pipeline id assigned. class PopulateVulnerabilityFeedbackPipelineId def perform(project_ids) end end end end Gitlab::BackgroundMigration::PopulateVulnerabilityFeedbackPipelineId.prepend_mod_with('Gitlab::BackgroundMigration::PopulateVulnerabilityFeedbackPipelineId')