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