Commit 442abde0 by John Jarvis

adding DB_MIGRATION_ENGINE and fixing defaults

parent 3fe701c0
......@@ -14,8 +14,9 @@ import os
from django.core.exceptions import ImproperlyConfigured
DB_OVERRIDES = dict(
USER=os.environ.get('DB_MIGRATION_USER', 'root'),
PASSWORD=os.environ.get('DB_MIGRATION_PASS', None),
ENGINE=os.environ.get('DB_MIGRATION_ENGINE', DATABASES['default']['ENGINE'])
USER=os.environ.get('DB_MIGRATION_USER', DATABASES['default']['USER']),
NAME=os.environ.get('DB_MIGRATION_NAME', DATABASES['default']['NAME']),
HOST=os.environ.get('DB_MIGRATION_HOST', DATABASES['default']['HOST']),
PORT=os.environ.get('DB_MIGRATION_PORT', DATABASES['default']['PORT']),
......
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