summaryrefslogtreecommitdiff
path: root/docs/ref/django-admin.txt
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-12-12 22:58:25 +0000
committerJannis Leidel <jannis@leidel.info>2010-12-12 22:58:25 +0000
commita03a8adb3e46a2df78de604340e729766ae2c18a (patch)
tree46b3e79ad8d42f69cbce245b03074f1af16b02de /docs/ref/django-admin.txt
parent3d35ac786800ddcea3b2cb59d04a29fb25636155 (diff)
Fixed #14268 -- Start the deprecation of the reset and sqlreset management command. Thanks, Carl.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14888 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/django-admin.txt')
-rw-r--r--docs/ref/django-admin.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 821b37fc5a..37e12c4cd8 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -491,6 +491,10 @@ several lines in language files.
reset <appname appname ...>
---------------------------
+.. deprecated:: 1.3
+ This command has been deprecated. The ``flush`` can be used to delete
+ everything. You can also use ALTER TABLE or DROP TABLE statements manually.
+
.. django-admin:: reset
Executes the equivalent of ``sqlreset`` for the given app name(s).
@@ -844,6 +848,10 @@ which to print the SQL.
sqlreset <appname appname ...>
------------------------------
+.. deprecated:: 1.3
+ This command has been deprecated. The ``sqlflush`` can be used to delete
+ everything. You can also use ALTER TABLE or DROP TABLE statements manually.
+
.. django-admin:: sqlreset
Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).