From 6f82df69efa372fb4bddf272fff577850a09f1dc Mon Sep 17 00:00:00 2001 From: sage Date: Thu, 17 Oct 2019 11:36:39 +0200 Subject: Refs #12990 -- Moved CheckFieldDefaultMixin to the django.db.models.fields.mixins. --- docs/ref/checks.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index 9bcba596fa..9c5b86eafd 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -140,6 +140,8 @@ Model fields * **fields.E008**: All ``validators`` must be callable. * **fields.E009**: ``max_length`` is too small to fit the longest value in ``choices`` (```` characters). +* **fields.E010**: ```` default should be a callable instead of an + instance so that it's not shared between all field instances. * **fields.E100**: ``AutoField``\s must set primary_key=True. * **fields.E110**: ``BooleanField``\s do not accept null values. *This check appeared before support for null values was added in Django 2.1.* @@ -747,7 +749,8 @@ fields: * **postgres.E001**: Base field for array has errors: ... * **postgres.E002**: Base field for array cannot be a related field. * **postgres.E003**: ```` default should be a callable instead of an - instance so that it's not shared between all field instances. + instance so that it's not shared between all field instances. *This check was + changed to* ``fields.E010`` *in Django 3.1*. ``sites`` --------- -- cgit v1.3