Add JSON properties to govplan model

This commit is contained in:
Stefan Wehrmeyer 2022-05-13 18:39:44 +02:00
parent 7be24fb7b1
commit 695ba7daed
2 changed files with 19 additions and 0 deletions

View file

@ -200,6 +200,7 @@ class GovernmentPlan(models.Model):
)
proposals = models.JSONField(blank=True, null=True)
properties = models.JSONField(blank=True, default=dict)
objects = GovernmentPlanManager()