summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/populate_test_reports_issue_id.rb
blob: 301efd0c94397d1dd35973fac4fe797184021e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true
# rubocop: disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class PopulateTestReportsIssueId
      def perform(start_id, stop_id)
        # NO OP
      end
    end
  end
end

Gitlab::BackgroundMigration::PopulateTestReportsIssueId.prepend_mod