diff --git a/django/core/management/commands/migrate.py b/django/core/management/commands/migrate.py index d98072c66e..1298cfaa30 100644 --- a/django/core/management/commands/migrate.py +++ b/django/core/management/commands/migrate.py @@ -81,7 +81,10 @@ class Command(BaseCommand): "--check", action="store_true", dest="check_unapplied", - help="Exits with a non-zero status if unapplied migrations exist.", + help=( + "Exits with a non-zero status if unapplied migrations exist and does " + "not actually apply migrations." + ), ) parser.add_argument( "--prune",