From 4870b304f2eabee3ec761f2d94b6251cae418f49 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 27 Apr 2015 13:17:52 -0400 Subject: [PATCH] Removed initial data from flush docs since it's removed; refs #24711. --- docs/ref/django-admin.txt | 7 +++++-- 1 file 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.