summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210918202855_reschedule_pending_jobs_for_recalculate_vulnerabilities_occurrences_uuid.rb
blob: c03c379dcc0c7a3cf7bfde19b2a40afa1cbfafe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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