Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220525141540_migrate_project_service_worker_queue.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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