diff --git a/django/core/management/commands/flush.py b/django/core/management/commands/flush.py
index bcadb96..0fe2779 100644
a
|
b
|
class Command(NoArgsCommand):
|
17 | 17 | default=DEFAULT_DB_ALIAS, help='Nominates a database to flush. ' |
18 | 18 | 'Defaults to the "default" database.'), |
19 | 19 | ) |
20 | | help = "Executes ``sqlflush`` on the current database." |
| 20 | help = ('Returns the database to the state it was in immediately after ' |
| 21 | 'syncdb was executed. This means that all data will be removed ' |
| 22 | 'from the database, any post-synchronization handlers will be ' |
| 23 | 're-executed, and the initial_data fixture will be re-installed.') |
21 | 24 | |
22 | 25 | def handle_noargs(self, **options): |
23 | 26 | db = options.get('database', DEFAULT_DB_ALIAS) |