summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt2
-rw-r--r--docs/releases/1.7.1.txt3
2 files changed, 4 insertions, 1 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 841c8f4c48..fde5dfa210 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -64,6 +64,7 @@ Models
* **models.E019**: Autogenerated column name too long for M2M field
``<M2M field>``. Maximum length is ``<maximum length>`` for database
``<alias>``.
+* **models.E020**: The ``<model>.check()`` class method is currently overridden.
Fields
~~~~~~
@@ -94,7 +95,6 @@ Fields
are mutually exclusive. Only one of these options may be present.
* **fields.W161**: Fixed default value provided.
-
File Fields
~~~~~~~~~~~
diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt
index 6c06857396..435c496230 100644
--- a/docs/releases/1.7.1.txt
+++ b/docs/releases/1.7.1.txt
@@ -120,3 +120,6 @@ Bugfixes
* Fixed a crash while parsing cookies containing invalid content
(:ticket:`23638`).
+
+* The system check framework now raises error **models.E020** when the
+ class method ``Model.check()`` is unreachable (:ticket:`23615`).