summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2013-09-06 17:00:19 -0500
committerAndrew Godwin <andrew@aeracode.org>2013-09-06 17:00:38 -0500
commit0b7cf56e28078a6d5e2a9cd21ef08176ad9a453b (patch)
treeda9c0b615538c85d425097c91df136debae52684
parent0c295a771886272fe50e49aef94d282b8f4725da (diff)
Add -l alias for migrate --list
-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 96cc70e50b..ba51dd87ff 100644
--- a/django/core/management/commands/migrate.py
+++ b/django/core/management/commands/migrate.py
@@ -28,7 +28,7 @@ class Command(BaseCommand):
'Defaults to the "default" database.'),
make_option('--fake', action='store_true', dest='fake', default=False,
help='Mark migrations as run without actually running them'),
- make_option('--list', action='store_true', dest='list', default=False,
+ make_option('--list', '-l', action='store_true', dest='list', default=False,
help='Show a list of all known migrations and which are applied'),
)