debian-mirror-gitlab/db/post_migrate/20220404194649_replace_work_item_type_backfill_next_batch_strategy.rb
2022-07-16 19:58:13 +02:00

14 lines
280 B
Ruby

# 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