summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-17 12:59:07 -0500
committerTim Graham <timograham@gmail.com>2015-01-17 12:59:07 -0500
commit4a03d348c70caa3e21393e08e6e665ef752202ac (patch)
treec7bc66eba84227a1130c1c18f5aabb18e72acf9b /docs
parent18192b9fa4387d5e6c677a7929d91ce04f92cda7 (diff)
Removed BaseCommand.requires_model_validation per deprecation timeline.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-management-commands.txt18
1 files changed, 1 insertions, 17 deletions
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index c55adb19fc..a87e0ef1ba 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -282,23 +282,7 @@ All attributes can be set in your derived class and can be used in
.. versionadded:: 1.7
A boolean; if ``True``, the entire Django project will be checked for
- potential problems prior to executing the command. If
- ``requires_system_checks`` is missing, the value of
- ``requires_model_validation`` is used. If the latter flag is missing
- as well, the default value (``True``) is used. Defining both
- ``requires_system_checks`` and ``requires_model_validation`` will result
- in an error.
-
-.. attribute:: BaseCommand.requires_model_validation
-
-.. deprecated:: 1.7
- Replaced by ``requires_system_checks``
-
- A boolean; if ``True``, validation of installed models will be
- performed prior to executing the command. Default value is
- ``True``. To validate an individual application's models
- rather than all applications' models, call
- :meth:`~BaseCommand.validate` from :meth:`~BaseCommand.handle`.
+ potential problems prior to executing the command. Default value is ``True``.
.. attribute:: BaseCommand.leave_locale_alone