mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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:
parent
fc2d25eb82
commit
1ef1b03bf6
1 changed files with 1 additions and 0 deletions
|
@ -177,6 +177,7 @@ def main():
|
|||
noinput_commands = (
|
||||
'flush',
|
||||
'syncdb',
|
||||
'migrate',
|
||||
'test',
|
||||
'collectstatic',
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue