From 1ef1b03bf66ae2985d23372619fcbea8923d91f5 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Tue, 18 Jun 2013 23:05:40 -0400 Subject: [PATCH] django_manage: Pass --noinput to migrate The django 'migrate' command should receive the --noinput command, otherwise it can block waiting for user input. --- library/web_infrastructure/django_manage | 1 + 1 file changed, 1 insertion(+) diff --git a/library/web_infrastructure/django_manage b/library/web_infrastructure/django_manage index eb766c6a0b0..d123ce353a2 100644 --- a/library/web_infrastructure/django_manage +++ b/library/web_infrastructure/django_manage @@ -177,6 +177,7 @@ def main(): noinput_commands = ( 'flush', 'syncdb', + 'migrate', 'test', 'collectstatic', )