django_manage: Pass --noinput to migrate

The django 'migrate' command should receive the --noinput command,
otherwise it can block waiting for user input.
This commit is contained in:
Lorin Hochstein 2013-06-18 23:05:40 -04:00
parent fc2d25eb82
commit 1ef1b03bf6

View file

@ -177,6 +177,7 @@ def main():
noinput_commands = (
'flush',
'syncdb',
'migrate',
'test',
'collectstatic',
)