Added clarification to [594]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@595 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
8c83f2ab30
commit
f4547bfbfd
|
@ -276,6 +276,11 @@ If you don't care about clearing data, just do this::
|
|||
That "psql" assumes you're using PostgreSQL. If you're using MySQL, use the
|
||||
appropriate command-line utility, ``mysql``.
|
||||
|
||||
``django-admin.py sqlreset`` outputs SQL that clears the app's database
|
||||
table(s) and creates new ones. The above command uses a Unix pipe to send the
|
||||
SQL directly to the PostgreSQL command-line utility, which accepts SQL as
|
||||
input.
|
||||
|
||||
If you do care about deleting data, you'll have to execute the ``ALTER TABLE``
|
||||
statements manually in your database. That's the way we've always done it,
|
||||
because dealing with data is a very sensitive operation that we've wanted to
|
||||
|
|
Loading…
Reference in New Issue