From 86df11505f38e1e7a4d6e7ce1a8d1cdceab8189d Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Fri, 30 May 2025 14:28:54 +0200 Subject: [PATCH] no null for many to many --- hub/services/models/pricing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/services/models/pricing.py b/hub/services/models/pricing.py index 4079d16..dc557ea 100644 --- a/hub/services/models/pricing.py +++ b/hub/services/models/pricing.py @@ -398,7 +398,7 @@ class ExternalPricePlans(models.Model): Service, on_delete=models.CASCADE, related_name="external_price" ) compare_to = models.ManyToManyField( - ComputePlan, related_name="external_prices", blank=True, null=True + ComputePlan, related_name="external_prices", blank=True ) vshn_appcat_price = models.ForeignKey( VSHNAppCatPrice,