From 10ace9a124014333fd0a74ba1645ad0c23dee38b Mon Sep 17 00:00:00 2001
From: Adrian Holovaty <adrian@holovaty.com>
Date: Wed, 20 Jul 2005 21:01:47 +0000
Subject: [PATCH] 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
---
 docs/tutorial01.txt | 5 +++--
 1 file 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