From 2ddc9504c3c1309e2c9e3c5a6849f92166437f39 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 2 Feb 2006 05:15:32 +0000 Subject: [PATCH] Clarified wording in docs/faq.txt. Thanks, Mike Coleman git-svn-id: http://code.djangoproject.com/svn/django/trunk@2229 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/faq.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/faq.txt b/docs/faq.txt index 786653b9d07..ab7c4c0194d 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -342,9 +342,9 @@ Using a ``FileField`` or an ``ImageField`` in a model takes a few steps: If I make changes to a model, how do I update the database? ----------------------------------------------------------- -If you don't care about clearing data, just pipe the output of the -appropriate ``django-admin.py sqlreset`` command into your database's -command-line utility. For example:: +If you don't mind clearing data, just pipe the output of the appropriate +``django-admin.py sqlreset`` command into your database's command-line utility. +For example:: django-admin.py sqlreset appname | psql dbname