1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Improved migrate help text for the --check option.

This commit is contained in:
Mike Lissner 2022-09-26 11:17:32 -07:00 committed by GitHub
parent f4e592e383
commit 2cd7ab1ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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",