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

20221103150250_migrate_sidekiq_queued_jobs.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1934711f9ef86c716cb0261a4ba3819ebb27d8aa (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class MigrateSidekiqQueuedJobs < Gitlab::Database::Migration[2.0]
  def up
    # no-op because of https://gitlab.com/gitlab-com/gl-infra/scalability/-/issues/1991
  end

  def down
    # no-op
  end
end