diff options
| author | Sebastian Spiegel <sbast@users.noreply.github.com> | 2016-11-06 13:52:06 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-01-06 19:50:31 -0500 |
| commit | 8b734d2f990063df2988143dfb5f4449b60b9ca3 (patch) | |
| tree | c35e0418b8e3e2f58cc514d621f4e2c57a5665d8 /docs/ref | |
| parent | d976760260c2d8371c1535a7bdeba9a2e0568a34 (diff) | |
Fixed #27432 -- Made app_label arguments limit showmigrations --plan output.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 7a77f4d1e7..47cff8e8c6 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -1015,11 +1015,17 @@ This is the default output format. .. django-admin-option:: --plan, -p -Shows the migration plan Django will follow to apply migrations. Any supplied -app labels are ignored because the plan might go beyond those apps. Like +Shows the migration plan Django will follow to apply migrations. Like ``--list``, applied migrations are marked by an ``[X]``. For a ``--verbosity`` of 2 and above, all dependencies of a migration will also be shown. +``app_label``\s arguments limit the output, however, dependencies of provided +apps may also be included. + +.. versionchanged:: 1.11 + + In older versions, ``showmigrations --plan`` ignores app labels. + .. django-admin-option:: --database DATABASE Specifies the database to examine. Defaults to ``default``. |
