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
use models.JSONField and python manage.py migrate will make Error (fields.E180) SQL Server does not support JSONFields, I want know how to sovle the problem
I see #24 replyed ,But it doesn't seem to solve the problem, so I want know how to sovle the problem
The text was updated successfully, but these errors were encountered:
mssql-django's DatabaseWrapper.data_type_check_constraints['JSONField'] contains an ISJSON check. This T-SQL function is only available on SQL Server 2016 and up so if you're running an earlier version you'll get an error when you try to create such a field.
I don't know what the right thing to do is for mssql-django generally. (For us, having a schema that differed depending on mssql version was undesirable so we just unconditionally monkey-patched the constraint out of data_type_check_constraints, but for others the check may be desirable.)
use models.JSONField and python manage.py migrate will make Error (fields.E180) SQL Server does not support JSONFields, I want know how to sovle the problem
I see #24 replyed ,But it doesn't seem to solve the problem, so I want know how to sovle the problem
The text was updated successfully, but these errors were encountered: