-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use JSONField for object repr field #298
Comments
I guess we probably can since django 3.1 was the first version to include universal JSON support on all supported db backends. Before that, we couldn't. Open to creating a PR? |
PR #299 |
Side question. Is there a reason why
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there any reason why we can't use
JSONField
instead ofTextField
forobject_json_repr
? It would allow for querying within the json for specific logs.https://docs.djangoproject.com/en/5.0/ref/models/fields/#jsonfield
The text was updated successfully, but these errors were encountered: