gitlab-org--gitlab-foss/db/post_migrate/20220404194649_replace_work...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
280 B
Ruby
Raw Normal View History

# 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