Changes between Initial Version and Version 1 of Ticket #36371, comment 2


Ignore:
Timestamp:
May 6, 2025, 5:08:56 PM (4 months ago)
Author:
Simon Charette

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36371, comment 2

    initial v1  
    11Likely related to tickets such as #31973, #32542.
    22
    3 You possibly have a field declared as `json` on Postgres instead of `jsonb` which [https://github.com/django/django/blob/f7d97dd11819be8996798a7197c5695a317334a0/django/db/backends/postgresql/base.py#L335-L341 the ORM explicitly request not to be deserialized by the backend] to support the `JSONField.decoder` feature.
     3You possibly have a field declared as `json` on Postgres instead of `jsonb` (not something created by Django itself as it never used the `json` type) which [https://github.com/django/django/blob/f7d97dd11819be8996798a7197c5695a317334a0/django/db/backends/postgresql/base.py#L335-L341 the ORM explicitly request not to be deserialized by the backend] to support the `JSONField.decoder` feature.
Back to Top