feat: add frost_hardiness_c and planting_density_m2 to Species model
This commit is contained in:
parent
c75757a70c
commit
fdbe821c8a
1 changed files with 2 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue