Fix #293
This commit is contained in:
parent
8153fa32ed
commit
acaeef172a
1 changed files with 4 additions and 3 deletions
|
@ -13,10 +13,11 @@ var dbconfig = config.db;
|
|||
dbconfig.logging = config.debug ? logger.info : false;
|
||||
|
||||
var sequelize = null;
|
||||
if (dbconfig.hasOwnProperty('username') || dbconfig.hasOwnProperty('password'))
|
||||
sequelize = new Sequelize(dbconfig.database, dbconfig.username, dbconfig.password, dbconfig);
|
||||
|
||||
if (process.env.DATABASE_URL)
|
||||
sequelize = new Sequelize(process.env.DATABASE_URL, dbconfig.username, dbconfig.password, dbconfig);
|
||||
else
|
||||
sequelize = new Sequelize(dbconfig.database, dbconfig);
|
||||
sequelize = new Sequelize(dbconfig.database, dbconfig.username, dbconfig.password, dbconfig);
|
||||
|
||||
var db = {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue