summaryrefslogtreecommitdiff
path: root/db/migrate/20200706005325_remove_elastic_batch_project_indexer_worker_queue.rb
blob: 07854096a8b0018fb099cddf97fad876e14d6d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class RemoveElasticBatchProjectIndexerWorkerQueue < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    Sidekiq.redis do |conn|
      conn.del "queue:elastic_batch_project_indexer"
    end
  end
end