Django

Code

Changeset 595

Show
Ignore:
Timestamp:
09/01/05 16:51:01 (3 years ago)
Author:
adrian
Message:

Added clarification to [594]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/faq.txt

    r594 r595  
    277277appropriate command-line utility, ``mysql``. 
    278278 
     279``django-admin.py sqlreset`` outputs SQL that clears the app's database 
     280table(s) and creates new ones. The above command uses a Unix pipe to send the 
     281SQL directly to the PostgreSQL command-line utility, which accepts SQL as 
     282input. 
     283 
    279284If you do care about deleting data, you'll have to execute the ``ALTER TABLE`` 
    280285statements manually in your database. That's the way we've always done it,