gitlab-org--gitlab-foss/db/post_migrate/20211023102243_schedule_del...

15 lines
258 B
Ruby

# frozen_string_literal: true
class ScheduleDeleteInvalidEpicIssues < Gitlab::Database::Migration[1.0]
# This is a now a no-op
# See https://gitlab.com/gitlab-org/gitlab/-/issues/348477
def up
# no-op
end
def down
# also no-op
end
end