summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-06-19 23:40:59 -0700
committerAndrew Godwin <andrew@aeracode.org>2014-06-19 23:41:32 -0700
commit9f4852f649fad459a451995c4a17a7d8db5972c9 (patch)
treec8e488e4bf84d86cb0c421e89c7e91e3d1fb39ee /django
parentd862fae5bbfb52ab7aeaad5a59b3d8b27b30c8f9 (diff)
Fixed #22863: Improve clarity of makemigrations for non-db params
Diffstat (limited to 'django')
-rw-r--r--django/core/management/commands/migrate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/migrate.py b/django/core/management/commands/migrate.py
index 8fc6f7c3cb..4149cbdc3a 100644
--- a/django/core/management/commands/migrate.py
+++ b/django/core/management/commands/migrate.py
@@ -132,7 +132,7 @@ class Command(BaseCommand):
self.stdout.write(self.style.MIGRATE_HEADING("Running migrations:"))
if not plan:
if self.verbosity >= 1:
- self.stdout.write(" No migrations needed.")
+ self.stdout.write(" No migrations to apply.")
# If there's changes that aren't in migrations yet, tell them how to fix it.
autodetector = MigrationAutodetector(
executor.loader.project_state(),