diff options
| author | Tim Graham <timograham@gmail.com> | 2015-04-27 13:17:52 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-04-27 13:20:38 -0400 |
| commit | 4870b304f2eabee3ec761f2d94b6251cae418f49 (patch) | |
| tree | fefb188bc36dfc4fe1c8e0b3245eb49855cbc0e4 /docs | |
| parent | d91321e8be0d8e52546026d461b14157d565870c (diff) | |
Removed initial data from flush docs since it's removed; refs #24711.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/django-admin.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index fd989e1344..14c7ce8a2d 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -310,8 +310,11 @@ flush .. django-admin:: flush -Removes all data from the database, re-executes any post-synchronization -handlers, and reinstalls any initial data fixtures. +Removes all data from the database and re-executes any post-synchronization +handlers. The table of which migrations have been applied is not cleared. + +If you would rather start from an empty database and re-run all migrations, you +should drop and recreate the database and then run :djadmin:`migrate` instead. The :djadminopt:`--noinput` option may be provided to suppress all user prompts. |
