summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220404194649_replace_work_item_type_backfill_next_batch_strategy.rb
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