summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/migrate_approver_to_approval_rules_in_batch.rb
blob: 2855566d7e887fef4490d45da924df8d7d420b9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class MigrateApproverToApprovalRulesInBatch
      def perform(start_id, end_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::MigrateApproverToApprovalRulesInBatch.prepend_mod_with('Gitlab::BackgroundMigration::MigrateApproverToApprovalRulesInBatch')