Welcome to mirror list, hosted at ThFree Co, Russian Federation.

migrate_vulnerabilities_feedback_to_vulnerabilities_state_transition.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84f7462e6b8a8319148c27315a24b46288c33940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

# rubocop:disable Style/Documentation
module Gitlab
  module BackgroundMigration
    class MigrateVulnerabilitiesFeedbackToVulnerabilitiesStateTransition < BatchedMigrationJob
      feature_category :database

      def perform; end
    end
  end
end

Gitlab::BackgroundMigration::MigrateVulnerabilitiesFeedbackToVulnerabilitiesStateTransition.prepend_mod
# rubocop:enable Style/Documentation