summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-04-27 13:17:52 -0400
committerTim Graham <timograham@gmail.com>2015-04-27 13:20:38 -0400
commit4870b304f2eabee3ec761f2d94b6251cae418f49 (patch)
treefefb188bc36dfc4fe1c8e0b3245eb49855cbc0e4 /docs
parentd91321e8be0d8e52546026d461b14157d565870c (diff)
Removed initial data from flush docs since it's removed; refs #24711.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/django-admin.txt7
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.