I am using Django 1.11
, I have been using CharField
in Models, and dumping data in it using json.dumps()
. I am using mysql
database.
I want to change CharField
to JSONField
, according to this answer. Is there any way so that I can modify my field type without loosing the data?
Please note that the data in CharField is json dumped.