Ticket #24711: 24711.diff

File 24711.diff, 725 bytes (added by Tim Graham, 10 years ago)
  • docs/ref/django-admin.txt

    diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
    index fd989e1..59a910a 100644
    a b flush  
    310310
    311311.. django-admin:: flush
    312312
    313 Removes all data from the database, re-executes any post-synchronization
    314 handlers, and reinstalls any initial data fixtures.
     313Removes all data from the database and re-executes any post-synchronization
     314handlers. The table of which migrations have been applied is not cleared.
     315
     316If you rather start from an empty database and re-run all migrations, you
     317should drop the database and then run :djadmin:`migrate` instead.
    315318
    316319The :djadminopt:`--noinput` option may be provided to suppress all user
    317320prompts.
Back to Top