django_manage: Pass --noinput to migrate

The django 'migrate' command should receive the --noinput command,
otherwise it can block waiting for user input.
reviewable/pr18780/r1
Lorin Hochstein 12 years ago
parent 0596f474cf
commit 4f841e6f62

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

Loading…
Cancel
Save