summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221103150250_migrate_sidekiq_queued_jobs.rb
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