You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2022. It is now read-only.
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='{}')
Do you know how to get this working properly?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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?
The text was updated successfully, but these errors were encountered: