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

module Gitlab
  module BackgroundMigration
    # No op on CE
    class MigrateRequirementsToWorkItems
      def perform(start_id, end_id)
      end
    end
  end
end

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