remove check for PASS

This commit is contained in:
John Jarvis
2014-02-03 16:42:22 -05:00
parent ff7810d777
commit 693497673a

View File

@@ -21,9 +21,5 @@ DB_OVERRIDES = dict(
PORT=os.environ.get('DB_MIGRATION_PORT', DATABASES['default']['PORT']),
)
if not DB_OVERRIDES['PASSWORD']:
raise ImproperlyConfigured("No database password was provided for running "
"migrations. This is fatal.")
for override, value in DB_OVERRIDES.iteritems():
DATABASES['default'][override] = value