summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-12-22 09:56:25 -0500
committerTim Graham <timograham@gmail.com>2015-12-22 09:58:33 -0500
commitd52b0c5b38cce633a75420a703a15f03aabd70dd (patch)
treeaf22ad7bb984e9457b3537fd20d71b274760cb7c /docs
parentf1628f6be1b8113b5e53aea497b2f6c47180e83f (diff)
Fixed #25965 -- Added removal of sql* commands to 1.9 release notes.
Diffstat (limited to 'docs')
-rw-r--r--docs/internals/deprecation.txt3
-rw-r--r--docs/man/django-admin.12
-rw-r--r--docs/ref/django-admin.txt2
-rw-r--r--docs/releases/1.9.txt3
4 files changed, 8 insertions, 2 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index d0bafdaafe..ec55cce148 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -327,6 +327,9 @@ details on these changes.
become compulsory for all apps unless you pass the ``--run-syncdb`` option to
``migrate``.
+* The SQL management commands for apps without migrations, ``sql``, ``sqlall``,
+ ``sqlclear``, ``sqldropindexes``, and ``sqlindexes``, will be removed.
+
* Support for automatic loading of ``initial_data`` fixtures and initial SQL
data will be removed.
diff --git a/docs/man/django-admin.1 b/docs/man/django-admin.1
index 41c3d64562..abb09f354a 100644
--- a/docs/man/django-admin.1
+++ b/docs/man/django-admin.1
@@ -2067,7 +2067,7 @@ Example usage:
.sp
.nf
.ft C
-django\-admin sqlall \-\-no\-color
+django\-admin runserver \-\-no\-color
.ft P
.fi
.UNINDENT
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 31da49cfc5..f4df81d229 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -1556,7 +1556,7 @@ that ``django-admin`` should print to the console.
Example usage::
- django-admin sqlall --no-color
+ django-admin runserver --no-color
By default, ``django-admin`` will format the output to be colorized. For
example, errors will be printed to the console in red and SQL statements will
diff --git a/docs/releases/1.9.txt b/docs/releases/1.9.txt
index fa3c6754e0..587e8861dc 100644
--- a/docs/releases/1.9.txt
+++ b/docs/releases/1.9.txt
@@ -1406,6 +1406,9 @@ removed in Django 1.9 (please see the :ref:`deprecation timeline
compulsory for all apps unless you pass the :djadminopt:`--run-syncdb`
option to ``migrate``.
+* The SQL management commands for apps without migrations, ``sql``, ``sqlall``,
+ ``sqlclear``, ``sqldropindexes``, and ``sqlindexes``, are removed.
+
* Support for automatic loading of ``initial_data`` fixtures and initial SQL
data is removed.