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

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

module Gitlab
  module BackgroundMigration
    # This background migration creates any approver rule records according
    # to the given merge request IDs range. A _single_ INSERT is issued for the given range.
    class PopulateAnyApprovalRuleForMergeRequests
      def perform(from_id, to_id)
      end
    end
  end
end

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