From aa0589f667ef798456f7f2aceb7c16fdebc1dd96 Mon Sep 17 00:00:00 2001 From: DeNNiiInc Date: Sun, 28 Dec 2025 22:13:17 +1100 Subject: [PATCH] Config: Update DB password to simpler string --- reset_password.sql | 2 +- test_db_insert.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reset_password.sql b/reset_password.sql index 4736cef..18a06fa 100644 --- a/reset_password.sql +++ b/reset_password.sql @@ -1 +1 @@ -ALTER USER postgres PASSWORD 'X@gon2005!#$'; +ALTER USER postgres PASSWORD 'WebPerfTest2025'; diff --git a/test_db_insert.js b/test_db_insert.js index 5576d1b..c399313 100644 --- a/test_db_insert.js +++ b/test_db_insert.js @@ -4,7 +4,7 @@ const { v4: uuidv4 } = require('uuid'); // Force localhost config.host = 'localhost'; -config.password = 'X@gon2005!#$'; +config.password = 'WebPerfTest2025'; const pool = new Pool(config);