summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorshanghui <shangdahao@gmail.com>2017-12-29 09:22:20 +0800
committerTim Graham <timograham@gmail.com>2018-01-03 10:34:31 -0500
commitcc6bcc6ff5cab320c5e5ae2760549a6c732067d8 (patch)
tree7783b60fd51ef5dccb9440eac2c9af0a6a1611f5 /docs
parentfbf647287ebd9898bff69c65a89fa09a903adaa5 (diff)
Fixed #28867 -- Added system check for a model property that clashes with a related field accessor.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index db86c49ee0..6310500d0c 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -292,6 +292,8 @@ Models
underscore as it collides with the query lookup syntax.
* **models.E024**: The model name ``<model>`` cannot contain double underscores
as it collides with the query lookup syntax.
+* **models.E025**: The property ``<property name>`` clashes with a related
+ field accessor.
Security
--------