chore: no logs

This commit is contained in:
cha0s 2020-07-25 05:44:35 -05:00
parent 22e6470ab8
commit 6fadb45b33

View File

@ -18,10 +18,11 @@ export async function createDatabaseConnection() {
const sequelize = new Sequelize({
database: MYSQL_DATABASE,
dialect: 'mysql',
username: MYSQL_USER,
host: MYSQL_HOST,
logging: false,
password: MYSQL_PASSWORD,
port: MYSQL_PORT,
username: MYSQL_USER,
});
Models.filter((Model) => Model.attributes).forEach((Model) => {
Model.init(Model.attributes, {