no null for many to many
All checks were successful
Build and Deploy / build (push) Successful in 1m22s
Build and Deploy / deploy (push) Successful in 4s

This commit is contained in:
Tobias Brunner 2025-05-30 14:28:54 +02:00
parent 7b93830df2
commit 86df11505f
No known key found for this signature in database

View file

@ -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,