summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management/commands/migrate.py5
1 files changed, 4 insertions, 1 deletions
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",