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

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class BackfillIterationCadenceIdForBoards
      def perform(*args)
      end
    end
  end
end

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