diff --git a/django/core/management/commands/makemigration.py b/django/core/management/commands/makemigrations.py similarity index 97% rename from django/core/management/commands/makemigration.py rename to 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):