feat: add frost_hardiness_c and planting_density_m2 to Species model

This commit is contained in:
Stephan Kerkman 2026-05-30 21:04:25 +02:00
parent c75757a70c
commit fdbe821c8a

View file

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