lms-sync 1.0.27 → 1.0.29
Sign up to get free protection for your applications and to get access to all the features.
- package/models/index.js +1 -1
- package/package.json +1 -1
package/models/index.js
CHANGED
@@ -12,7 +12,7 @@ const config = JSON.parse(fs.readFileSync(path.join(process.cwd(), 'target.json'
|
|
12
12
|
|
13
13
|
const schema = config.schema || "default_schema"
|
14
14
|
|
15
|
-
let sequelize = new Sequelize(config.database, config.username, config.password, config)
|
15
|
+
let sequelize = new Sequelize(config.database, config.username, config.password, config.port, config.dialect, config)
|
16
16
|
|
17
17
|
fs
|
18
18
|
.readdirSync(__dirname)
|