How to manually cancel UBP user or make it free
Step-by-step implementation​
- Run rails console in production/staging/local
- Find subscription on db that you want to downgrade
s = ProSubscription.find(id)s.update({to_downgrade_at: nil, active: false})- deactivate subscriptions.user.downgrade_apps_to_free(nil, 'v_250')include UsageBasedHelperreset_user_apps_block(s.user.id, 'v_250')- reset user's ubp radis cache
#cancel, #ubp, #v_250