feat(db): add library_items, library_sync_log, app_settings migrations

This commit is contained in:
2026-03-20 00:01:34 +01:00
parent 187cd064fb
commit a7c3f1f92e
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS app_settings (
key TEXT PRIMARY KEY,
value TEXT NOT NULL
);
INSERT OR IGNORE INTO app_settings(key, value) VALUES ('library_sync_interval_hours', '6');