diff options
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/checks.txt | 8 | ||||
| -rw-r--r-- | docs/ref/django-admin.txt | 10 |
2 files changed, 17 insertions, 1 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index e7b0a5ec8c..99d5fccfaa 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -79,7 +79,8 @@ Django's system checks are organized using the following tags: * ``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. + you specify configured database aliases using the ``--database`` option when + calling the :djadmin:`check` command. * ``models``: Checks of model, field, and manager definitions. * ``security``: Checks security related configuration. * ``signals``: Checks on signal declarations and handler registrations. @@ -90,6 +91,11 @@ Django's system checks are organized using the following tags: Some checks may be registered with multiple tags. +.. versionchanged:: 3.1 + + The ``database`` checks are now run only for database aliases specified + using the :option:`check --database` option. + Core system checks ================== diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 3f95d8e1ce..a5ef671e26 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -106,6 +106,16 @@ For example, to perform only models and compatibility checks, run:: django-admin check --tag models --tag compatibility +.. django-admin-option:: --database DATABASE + +.. versionadded:: 3.1 + +Specifies the database to run checks requiring database access:: + + django-admin check --database default --database other + +By default, these checks will not be run. + .. django-admin-option:: --list-tags Lists all available tags. |
