summaryrefslogtreecommitdiff
path: root/db/migrate/20230428134334_delete_create_cross_project_pipeline_worker_job_instances.rb
blob: 517f85c0c1f7bdc86bc286f454f034eb9481f4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class DeleteCreateCrossProjectPipelineWorkerJobInstances < Gitlab::Database::Migration[2.1]
  DEPRECATED_JOB_CLASSES = %w[
    CreateCrossProjectPipelineWorker
  ]

  disable_ddl_transaction!
  def up
    sidekiq_remove_jobs(job_klasses: DEPRECATED_JOB_CLASSES)
  end

  def down
    # This migration removes any instances of deprecated workers and cannot be undone.
  end
end