summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-20 21:01:47 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-20 21:01:47 +0000
commit10ace9a124014333fd0a74ba1645ad0c23dee38b (patch)
tree8791bd43a8b0326d44a0b86d50c8e8902891036c /docs/tutorial01.txt
parent47cc60d94b6f96ae939b7325be793d8a2cf8f31d (diff)
Added clarification about 'django-admin.py sqlclear' to docs/tutorial01
git-svn-id: http://code.djangoproject.com/svn/django/trunk@253 bcc190cf-cafb-0310-a4f2-bffc1f526a37
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