summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/populate_approval_merge_request_rules_with_security_orchestration.rb
blob: 00d7b1b9664968b774b51d4cd7fa538ec28427bc (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
    # This class doesn't delete merge request level rules
    # as this feature exists only in EE
    class PopulateApprovalMergeRequestRulesWithSecurityOrchestration < BatchedMigrationJob
      feature_category :database

      def perform; end
    end
  end
end

# rubocop:disable Layout/LineLength
Gitlab::BackgroundMigration::PopulateApprovalMergeRequestRulesWithSecurityOrchestration.prepend_mod_with('Gitlab::BackgroundMigration::PopulateApprovalMergeRequestRulesWithSecurityOrchestration')
# rubocop:enable Layout/LineLength