populate_billing_realms: Add a realms on basic plan.

This commit is contained in:
Aman Agrawal 2024-01-12 15:53:31 +00:00 committed by Tim Abbott
parent c9a4660911
commit fd85f51745
1 changed files with 11 additions and 0 deletions

View File

@ -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 = []