mirror of
https://github.com/django/django.git
synced 2025-09-27 04:29:17 +00:00
Improved migrate help text for the --check option.
This commit is contained in:
parent
f4e592e383
commit
2cd7ab1ef6
1 changed files with 4 additions and 1 deletions
|
@ -81,7 +81,10 @@ class Command(BaseCommand):
|
||||||
"--check",
|
"--check",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
dest="check_unapplied",
|
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(
|
parser.add_argument(
|
||||||
"--prune",
|
"--prune",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue