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

20220908125146_remove_free_user_cap_remediation_worker.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e95ea9c58b4a669c5a41e59ce744073b3ae204b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class RemoveFreeUserCapRemediationWorker < Gitlab::Database::Migration[2.0]
  def up
    Sidekiq::Cron::Job.find('free_user_cap_data_remediation')&.destroy
  end

  def down
    # no-op
  end
end