From fdbe821c8a6a2f16595d0c31cb11de8385a2e4e8 Mon Sep 17 00:00:00 2001 From: Stephan Kerkman Date: Sat, 30 May 2026 21:04:25 +0200 Subject: [PATCH] feat: add frost_hardiness_c and planting_density_m2 to Species model --- plants/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plants/models.py b/plants/models.py index 9afa808..0e1bfb0 100644 --- a/plants/models.py +++ b/plants/models.py @@ -24,6 +24,8 @@ class Species(models.Model): pruning_months = models.JSONField(default=list) bloom_months = models.JSONField(default=list) api_image_url = models.URLField(blank=True) + frost_hardiness_c = models.SmallIntegerField(null=True, blank=True) + planting_density_m2 = models.PositiveSmallIntegerField(null=True, blank=True) perenual_id = models.IntegerField(unique=True, null=True, blank=True) vpc_slug = models.CharField(max_length=200, blank=True, db_index=True) vpc_raw = models.JSONField(null=True, blank=True)