Commit 1ef1b03b by Lorin Hochstein

django_manage: Pass --noinput to migrate

The django 'migrate' command should receive the --noinput command,
otherwise it can block waiting for user input.
parent fc2d25eb
...@@ -177,6 +177,7 @@ def main(): ...@@ -177,6 +177,7 @@ def main():
noinput_commands = ( noinput_commands = (
'flush', 'flush',
'syncdb', 'syncdb',
'migrate',
'test', 'test',
'collectstatic', 'collectstatic',
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment