updates django-jsonfield's version to 0.9.0 which seems to be last compatible version with Capitol-Words.
However, I get
django.db.utils.DatabaseError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'json NOT NULL\n)' at line 12")
when I run python manage.py syncdb.
This is because of cwod_site/cwod/models.py has class Embed(models.Model) with:
extra = jsonfield.JSONField(blank=True, default='{}')
I updated the requirements.txt to use
instead of
because
updates django-jsonfield's version to 0.9.0 which seems to be last compatible version with Capitol-Words.
However, I get
when I run
python manage.py syncdb
.This is because of cwod_site/cwod/models.py has
class Embed(models.Model)
with:Do you know how to get this working properly?