feat: Serien-Suche, Admin-Favoriten, Pushover, Dashboard-Badge
This commit is contained in:
@@ -556,6 +556,12 @@ if (!db.prepare("SELECT name FROM sqlite_master WHERE type='table' AND name='mov
|
||||
db.exec("ALTER TABLE movie_favorites ADD COLUMN genres TEXT NOT NULL DEFAULT '[]'");
|
||||
if (!cols.includes('fsk'))
|
||||
db.exec("ALTER TABLE movie_favorites ADD COLUMN fsk TEXT NOT NULL DEFAULT ''");
|
||||
if (!cols.includes('acknowledged'))
|
||||
db.exec("ALTER TABLE movie_favorites ADD COLUMN acknowledged INTEGER NOT NULL DEFAULT 0");
|
||||
if (!cols.includes('acknowledged_at'))
|
||||
db.exec("ALTER TABLE movie_favorites ADD COLUMN acknowledged_at DATETIME DEFAULT NULL");
|
||||
if (!cols.includes('media_type'))
|
||||
db.exec("ALTER TABLE movie_favorites ADD COLUMN media_type TEXT NOT NULL DEFAULT 'movie'");
|
||||
}
|
||||
|
||||
// xREL Badge Cache (persistent, überlebt Container-Restarts)
|
||||
|
||||
Reference in New Issue
Block a user