debian-mirror-gitlab/db/migrate/20200706005325_remove_elastic_batch_project_indexer_worker_queue.rb

12 lines
240 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# 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