From fd85f517459cbd9d16d0e52b7e8d4f490c4a9fbc Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Fri, 12 Jan 2024 15:53:31 +0000 Subject: [PATCH] populate_billing_realms: Add a realms on basic plan. --- .../management/commands/populate_billing_realms.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/zilencer/management/commands/populate_billing_realms.py b/zilencer/management/commands/populate_billing_realms.py index 27fd31a2df..e6019870d1 100644 --- a/zilencer/management/commands/populate_billing_realms.py +++ b/zilencer/management/commands/populate_billing_realms.py @@ -229,6 +229,17 @@ class Command(BaseCommand): is_sponsored=True, is_remote_realm=True, ), + CustomerProfile( + unique_id="basic-remote-realm", + tier=CustomerPlan.TIER_SELF_HOSTED_BASIC, + is_remote_realm=True, + ), + CustomerProfile( + unique_id="basic-remote-free-trial", + tier=CustomerPlan.TIER_SELF_HOSTED_BASIC, + status=CustomerPlan.FREE_TRIAL, + is_remote_realm=True, + ), ] servers = []