summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management/commands/makemigrations.py (renamed from django/core/management/commands/makemigration.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/makemigration.py b/django/core/management/commands/makemigrations.py
index baf3f075ca..0f04b2fc1f 100644
--- a/django/core/management/commands/makemigration.py
+++ b/django/core/management/commands/makemigrations.py
@@ -20,7 +20,7 @@ class Command(BaseCommand):
)
help = "Creates new migration(s) for apps."
- usage_str = "Usage: ./manage.py createmigration [--empty] [app [app ...]]"
+ usage_str = "Usage: ./manage.py makemigrations [--empty] [app [app ...]]"
def handle(self, *app_labels, **options):