summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSanyam Khurana <sanyam.khurana01@gmail.com>2018-12-13 01:41:50 +0530
committerTim Graham <timograham@gmail.com>2018-12-24 10:40:11 -0500
commit5d25804eaf81795c7d457e5a2a9f0b9b0989136c (patch)
tree8b7dbceae0f842ec3d22b6059f35931cb935aab8 /docs
parente626a3f993fc0581a3e0770a3930ac1fc20196cb (diff)
Fixed #20098 -- Added a check for model Meta.db_table collisions.
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 acd860065f..6ec3028c35 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -302,6 +302,8 @@ Models
* **models.E026**: The model cannot have more than one field with
``primary_key=True``.
* **models.W027**: ``<database>`` does not support check constraints.
+* **models.E028**: ``db_table`` ``<db_table>`` is used by multiple models:
+ ``<model list>``.
Security
--------