From 39376190fe4472a56e9ff89c03344d2463966ef3 Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Fri, 12 Jan 2024 15:54:07 +0000 Subject: [PATCH] populate_billing_realms: Bump licenses to 25 to avoid negative amount. --- zilencer/management/commands/populate_billing_realms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zilencer/management/commands/populate_billing_realms.py b/zilencer/management/commands/populate_billing_realms.py index e6019870d1..8fd2196e03 100644 --- a/zilencer/management/commands/populate_billing_realms.py +++ b/zilencer/management/commands/populate_billing_realms.py @@ -311,8 +311,8 @@ def create_plan_for_customer(customer: Customer, customer_profile: CustomerProfi ) LicenseLedger.objects.create( - licenses=10, - licenses_at_next_renewal=10, + licenses=25, + licenses_at_next_renewal=25, event_time=timezone_now(), is_renewal=True, plan=customer_plan,