Answers for "mysql database config file with sequelize"

0

mysql database config file with sequelize

module.exports = {

HOST: "localhost",

USER: "root",

PASSWORD: "123456",

DB: "testdb",

dialect: "mysql",

pool: {

max: 5,

min: 0,

acquire: 30000,

idle: 10000

}

};
Posted by: Guest on August-24-2021
0

mysql database config file with sequelize

module.exports = {

HOST: "localhost",

USER: "root",

PASSWORD: "123456",

DB: "testdb",

dialect: "mysql",

pool: {

max: 5,

min: 0,

acquire: 30000,

idle: 10000

}

};
Posted by: Guest on August-24-2021

Code answers related to "mysql database config file with sequelize"

Code answers related to "Javascript"

Browse Popular Code Answers by Language