diff options
author | Peter Bwire <bwire517@gmail.com> | 2014-12-05 18:08:47 +0300 |
---|---|---|
committer | Peter Bwire <bwire517@gmail.com> | 2014-12-05 18:08:47 +0300 |
commit | 1710b45075d258216b32cf62a636e3a0f1ff098b (patch) | |
tree | 6528bfb4ba125015a580c79a3b7eabf9536ff868 /web_infrastructure | |
parent | e8edee41669e1054db37659b78191fee01186e06 (diff) | |
download | ansible-modules-core-1710b45075d258216b32cf62a636e3a0f1ff098b.tar.gz |
Update django_manage to add database option for migrate
Allow passing the database option to the django_manage module for migrations. This is usefull in situations where multiple databases are used by a django application.
Diffstat (limited to 'web_infrastructure')
-rw-r--r-- | web_infrastructure/django_manage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_infrastructure/django_manage.py b/web_infrastructure/django_manage.py index 580cc63c..3e34a638 100644 --- a/web_infrastructure/django_manage.py +++ b/web_infrastructure/django_manage.py @@ -170,7 +170,7 @@ def main(): syncdb=('database', ), test=('failfast', 'testrunner', 'liveserver', 'apps', ), validate=(), - migrate=('apps', 'skip', 'merge'), + migrate=('apps', 'skip', 'merge', 'database',), collectstatic=('link', ), ) |