I\'m trying to set up a models file in Django 1.9 using the new JSONField. I have found examples using postgres but none with MySql. In the examples with postgres they do
# Install jsonfield package pip install jsonfield # Define my model from django.db import models import jsonfield class MyModel(models.Model): the_json = jsonfield.JSONField()
More detail:https://pypi.python.org/pypi/django-jsonfield