debian-mirror-gitlab/db/post_migrate/20210918202855_reschedule_pending_jobs_for_recalculate_vulnerabilities_occurrences_uuid.rb
2022-03-02 08:16:31 +05:30

12 lines
272 B
Ruby

# frozen_string_literal: true
class ReschedulePendingJobsForRecalculateVulnerabilitiesOccurrencesUuid < Gitlab::Database::Migration[1.0]
def up
# no-op
# no replacement because we will reschedule this for the whole table
end
def down
# no-op
end
end