diff options
| author | Senthil Kumar <jrsenthil.kumar23@gmail.com> | 2025-07-16 20:54:21 +0800 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-09-19 14:57:05 -0400 |
| commit | 5ee651f2555f3258b136f6e8be90f018fd8ffbf0 (patch) | |
| tree | e469a06dc941ce2b06925bce09e0514d4cc89ecb /django | |
| parent | fd705912fff168d10c806568a222dfa25e3bb6a0 (diff) | |
Fixed #36369 -- Cleared additional cached properties in apps.clear_cache().
Thanks Clifford Gama for the report.
Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/models/options.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/django/db/models/options.py b/django/db/models/options.py index 0e229dea3a..109780ac49 100644 --- a/django/db/models/options.py +++ b/django/db/models/options.py @@ -100,6 +100,13 @@ class Options: "managers_map", "base_manager", "default_manager", + "db_returning_fields", + "_property_names", + "pk_fields", + "total_unique_constraints", + "all_parents", + "swapped", + "verbose_name_raw", } REVERSE_PROPERTIES = {"related_objects", "fields_map", "_relation_tree"} |
