MySQL and Postgres both support JSON fields directly, and have some
searching capability built in for those fields. I don't think you have to
use the django-jsonfield anymore. Check the
MySQL and/or Postgres docs -
https://dev.mysql.com/doc/refman/8.0/en/json.html
https://www.postgresql.org/docs/9
I am building a chatbot using Django with a MySQL backend.
I have a `ChatSession` model which represents all the useful information to
be stored after the end of a chat session .
Now, it has a JSON field called `cc_data`(Implemented using
[`django-jsonfield`](https://github.com/dmkoch/django-j
2 matches
Mail list logo