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

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

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class DeleteInvalidEpicIssues < BatchedMigrationJob
      def perform
      end
    end
  end
end

# rubocop:disable Layout/LineLength
Gitlab::BackgroundMigration::DeleteInvalidEpicIssues.prepend_mod_with('Gitlab::BackgroundMigration::DeleteInvalidEpicIssues')