From 4c32b03bd9232d669be962097cf72ebbe096683c Mon Sep 17 00:00:00 2001 From: Oguntola Joshua <101347375+ExtranoDev@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:38:16 +0100 Subject: [PATCH] Update db.js --- db/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/db.js b/db/db.js index 5beab183..f0757f6c 100644 --- a/db/db.js +++ b/db/db.js @@ -2,7 +2,7 @@ const { Sequelize } = require('sequelize'); require('dotenv').config(); const URI = process.env.MYSQL_ADDON_URI; -console.log(URI); + const sequelize = new Sequelize(URI, { dialect: 'mysql', logging: false }); //The below is for local connection