From 87b3715774e8bf22f620d172c9393d88b5787bc1 Mon Sep 17 00:00:00 2001 From: Mekan1206 Date: Tue, 2 Jun 2026 15:21:37 +0500 Subject: [PATCH] WIP --- db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.js b/db.js index d981361..8090c06 100644 --- a/db.js +++ b/db.js @@ -18,7 +18,7 @@ const db = new sqlite3.Database(dbPath, (err) => { console.error('Error creating devices table', err); } else { // Insert a default device for testing if it doesn't exist - db.run(`INSERT OR IGNORE INTO devices (login, password) VALUES ('admin', 'admin123')`); + db.run(`INSERT OR IGNORE INTO devices (login, password) VALUES ('daragt', 'daragt4740')`); } });