debian-mirror-gitlab/db/post_migrate/20221103150250_migrate_sidekiq_queued_jobs.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
234 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# 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