Does this support the new django.db.models.JSONField?
See original GitHub issueDjango 3.1 introduced a new django.db.models.JSONField
(distinct from the PostgreSQL one).
Does this package support it?
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
django.contrib.postgres.fields.JSONField to django.db.models ...
Hello,. A project I'm working has a use case for a model with a JSONField. I use Postgres for the db and was...
Read more >Migrating to the Django 3.1 JSON Field - Oak-Tree Technologies
JSONField allows for you to store semi-structured data alongside other data fields in PostgreSQL, MySQL, and SQLite databases and supports ...
Read more >Using Django's JSONField? You probably don't need it. Here's ...
If you're using Postgres with Django and importing the JSONField object, you're using JSONB. This is the default in recent Django versions and ......
Read more >Conditional Django migration based on a field only present in ...
And if I installed Django 3.1 and generated a migration, it could take me from django.contrib.postgres.fields.JSONField to django.db.models.
Read more >django 3.1: JSONField deprecation warning #265 - GitHub
JSONField is deprecated. Support for it (except in historical migrations) will be removed in Django 4.0. HINT: Use django.db.models.JSONField instead.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The documentation is using the
django.contrib.postgres.fields
version of JSONField which will soon be deprecated. The reason it wasn’t working for me at first was because I was using thedjango.db.models
in my models.py and used the documentations version to have it run in my admin.Here is my
admin.py
:Just looking now that #48 #46 are both pull requests that are updating the README.md