summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2016-03-19 12:15:09 +0100
committerClaude Paroz <claude@2xlibre.net>2016-04-08 20:28:00 +0200
commit0d3c616fbb2f49fa7ff6809e5a6777275352b35b (patch)
treee444996e32456a0ab64f65ee76e1d0c110f25ff5 /docs/ref
parent5ac7c8f7ab2b2e1fec50abb14539a2eb520d1995 (diff)
Refs #26351 -- Added check hook to support database-related checks
Thanks Tim Graham and Shai Berger for the reviews.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/checks.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index c82bd2bc98..a332df2071 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -84,6 +84,14 @@ Django's system checks are organized using the following tags:
* ``templates``: Checks template related configuration.
* ``caches``: Checks cache related configuration.
* ``urls``: Checks URL configuration.
+* ``database``: Checks database-related configuration issues. Database checks
+ are not run by default because they do more than static code analysis as
+ regular checks do. They are only run by the :djadmin:`migrate` command or if
+ you specify the ``database`` tag when calling the :djadmin:`check` command.
+
+.. versionadded:: 1.10
+
+ The ``database`` tag was added.
Some checks may be registered with multiple tags.