Re: Convert JSON data into structured data in an SQL database using Django ORM

2019-02-02 Thread Mark Phillips
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

Convert JSON data into structured data in an SQL database using Django ORM

2019-02-02 Thread Parth Sharma
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