summaryrefslogtreecommitdiff
path: root/db/post_migrate/20211103141403_remove_propagate_service_template_worker.rb
blob: d949641dbcee4da43649220d152cb8c488eaad3f (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class RemovePropagateServiceTemplateWorker < Gitlab::Database::Migration[1.0]
  def up
    Sidekiq::Queue.new('propagate_service_template').clear
  end

  def down
    # no-op
  end
end