Django/Postgres - Extracting from dates stored in JSONFied
Apr 4, 2022 · 2 min read · Background You may have a Django app with a model, in which, you are storing some extra/unstructured information in a JSONField. An illustration: from django.db import models # Create your models here. class Person(models.Model): first_name = mo...
AAmal commented