summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index c7843b603f..b8b34ccc43 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -249,8 +249,9 @@ If you're interested, also run the following commands:
* ``django-admin.py sqlinitialdata polls`` -- Outputs the initial-data inserts
required for Django's admin framework.
-* ``django-admin.py sqlclear polls`` -- Outputs the ``DROP TABLE`` statements
- for this app.
+* ``django-admin.py sqlclear polls`` -- Outputs the necessary ``DROP TABLE``
+ statements for this app, according to which tables already exist in your
+ database (if any).
* ``django-admin.py sqlindexes polls`` -- Outputs the ``CREATE INDEX``
statements for this app.
* ``django-admin.py sqlall polls`` -- A combination of 'sql' and