summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-09-13 09:47:14 +0200
committerClaude Paroz <claude@2xlibre.net>2014-09-13 09:47:14 +0200
commit31309d4722aa5e08d10733f8cf36d3184799044b (patch)
treeb46c422c46a1d104dc24412663659ee0b130d82c
parentac1adfbe4a822a3347401f574e64f83e36128cec (diff)
[1.7.x] Fixed #23478 -- Complemented sqlmigrate command help
-rw-r--r--django/core/management/commands/sqlmigrate.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/core/management/commands/sqlmigrate.py b/django/core/management/commands/sqlmigrate.py
index 46b9ba9929..36cdf154b6 100644
--- a/django/core/management/commands/sqlmigrate.py
+++ b/django/core/management/commands/sqlmigrate.py
@@ -19,6 +19,7 @@ class Command(BaseCommand):
)
help = "Prints the SQL statements for the named migration."
+ args = "[app_label] [migration_name]"
output_transaction = True
def execute(self, *args, **options):