From 3060fb2894581806242bb88e5c0c00d6e1706f57 Mon Sep 17 00:00:00 2001 From: vista-man <524715@vistacollege.nl> Date: Tue, 25 Mar 2025 17:12:44 +0100 Subject: [PATCH] Update database connection details in low-resolution image update script --- update_low_res_images.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/update_low_res_images.js b/update_low_res_images.js index 0ad2497..46f4687 100644 --- a/update_low_res_images.js +++ b/update_low_res_images.js @@ -4,9 +4,9 @@ const path = require('path'); const connection = mysql.createConnection({ host: 'localhost', - user: 'database1', - password: '181t$1lJg', - database: 'pokedex1' + user: 'root', + password: '', + database: 'pokedex' }); connection.connect((err) => {