summaryrefslogtreecommitdiff
path: root/django/db/models/fields/mixins.py
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-8/+11
|
* Refs #12990 -- Moved CheckFieldDefaultMixin to the ↵sage2019-10-171-0/+30
| | | | django.db.models.fields.mixins.
* Refs #28834 -- Moved ancestor field cached value fallback to related fields ↵Paulo2018-05-141-16/+0
| | | | descriptor.
* Fixed #28834 -- Followed ancestor links on field cache lookup failure.Simon Charette2017-11-291-0/+16
| | | | Thanks Tim for the review.
* Refs #16043 -- Refactored internal fields value cache.Paulo2017-08-101-0/+26
* Removed all hardcoded logic for _{fieldname}_cache. * Added an internal API for interacting with the field values cache. Thanks carljm and MarkusH for support.