Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210918202855_reschedule_pending_jobs_for_recalculate_vulnerabilities_occurrences_uuid.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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