summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220525141540_migrate_project_service_worker_queue.rb
blob: acfb8b227fec3ae53af393da455daa3cb0310388 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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