debian-mirror-gitlab/db/post_migrate/20221103150250_migrate_sidekiq_queued_jobs.rb
2023-01-12 18:35:48 +00:00

12 lines
234 B
Ruby

# 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