debian-mirror-gitlab/db/post_migrate/20220525141540_migrate_project_service_worker_queue.rb

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

12 lines
286 B
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# frozen_string_literal: true
class MigrateProjectServiceWorkerQueue < Gitlab::Database::Migration[2.0]
def up
sidekiq_queue_migrate 'project_service', to: 'integrations_execute'
end
def down
sidekiq_queue_migrate 'integrations_execute', to: 'project_service'
end
end