Changelog: Build-Zeitpunkt als Timestamp, Benutzer ausblenden Toggle

This commit is contained in:
2026-05-29 09:35:30 +02:00
parent 3ca1ab44a6
commit c3047ac4d6
3 changed files with 36 additions and 2 deletions

View File

@@ -252,6 +252,8 @@ if (!userCols2.includes('preferences'))
db.exec("ALTER TABLE users ADD COLUMN preferences TEXT DEFAULT NULL");
if (!userCols2.includes('last_active_at'))
db.exec("ALTER TABLE users ADD COLUMN last_active_at DATETIME DEFAULT NULL");
if (!userCols2.includes('hidden'))
db.exec("ALTER TABLE users ADD COLUMN hidden INTEGER NOT NULL DEFAULT 0");
// ── Login-Sicherheit ──────────────────────────────────────────────────────────
// Spalten für Account-Lockout in users-Tabelle