summaryrefslogtreecommitdiff
path: root/lib/models
diff options
context:
space:
mode:
authorYukai Huang2016-12-12 10:18:12 +0800
committerYukai Huang2016-12-12 10:36:24 +0800
commit74c1da4536285593f3172f8be6a22ad300f73348 (patch)
tree0ff3b7dbf851a0c33eaf7fba92eb4669f0a75bb3 /lib/models
parent50b72c7f03ebf47a78ed303c7d0d41bf278dedba (diff)
Simplify output with sequelize database argument
Diffstat (limited to 'lib/models')
-rw-r--r--lib/models/index.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/models/index.js b/lib/models/index.js
index 3b49d459..60eedf61 100644
--- a/lib/models/index.js
+++ b/lib/models/index.js
@@ -11,7 +11,13 @@ var logger = require("../logger.js");
var dbconfig = config.db;
dbconfig.logging = config.debug ? logger.info : false;
-var sequelize = new Sequelize(dbconfig.database, dbconfig.username, dbconfig.password, dbconfig);
+
+var sequelize;
+if (typeof dbconfig.username === 'undefined' && typeof dbconfig.password === 'undefined') {
+ sequelize = new Sequelize(dbconfig.database, dbconfig);
+} else {
+ sequelize = new Sequelize(dbconfig.database, dbconfig.username, dbconfig.password, dbconfig);
+}
var db = {};
@@ -34,4 +40,4 @@ Object.keys(db).forEach(function (modelName) {
db.sequelize = sequelize;
db.Sequelize = Sequelize;
-module.exports = db; \ No newline at end of file
+module.exports = db;