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

14 lines
287 B
Ruby

# frozen_string_literal: true
class BackfillWorkItemTypeIdOnIssues < Gitlab::Database::Migration[1.0]
def up
# no-op
# This migration will be rescheduled as described in
# https://gitlab.com/gitlab-org/gitlab/-/merge_requests/85212
end
def down
# no-op
end
end