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

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

class ReplaceWorkItemTypeBackfillNextBatchStrategy < Gitlab::Database::Migration[1.0]
  def up
    # no-op
    # migrations will be rescheduled with the correct batching class
    # no need for this migration
  end

  def down
    # no-op
  end
end