summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fix_approval_project_rules_without_protected_branches.rb
blob: bfbed0408e10b8c9bd424690429eef6afbbaf5b1 (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 update approval project rules
    # as this feature exists only in EE
    class FixApprovalProjectRulesWithoutProtectedBranches < BatchedMigrationJob
      feature_category :database

      def perform; end
    end
  end
end

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