summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220908125146_remove_free_user_cap_remediation_worker.rb
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