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

module Gitlab
  module BackgroundMigration
    class RemoveUndefinedOccurrenceConfidenceLevel
      def perform(start_id, stop_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::RemoveUndefinedOccurrenceConfidenceLevel.prepend_if_ee('EE::Gitlab::BackgroundMigration::RemoveUndefinedOccurrenceConfidenceLevel')