Aktualisiere Datenbankverbindung mit neuen Host- und Portinformationen sowie Passwort

This commit is contained in:
2025-03-14 15:12:43 +01:00
parent 5452555852
commit 3c9e172134
3 changed files with 7 additions and 3 deletions

View File

@@ -5,8 +5,9 @@ class DataBaseManager {
constructor(host, database) {
this.connection = mySql.createConnection({
host: host,
port: 5432,
user: "root",
password:"",
password: "Jonas2007",
database: database
});