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

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

module Gitlab
  module BackgroundMigration
    # rubocop:disable Style/Documentation
    class PopulateDenormalizedColumnsForSbomOccurrences < BatchedMigrationJob
      feature_category :dependency_management

      def perform
        # no-op for the FOSS version
      end
    end
    # rubocop:enable Style/Documentation
  end
end

::Gitlab::BackgroundMigration::PopulateDenormalizedColumnsForSbomOccurrences.prepend_mod