refactor: migrate from MongoDB to SQLite, updating database schema and configuration for improved performance and simplicity

This commit is contained in:
Julien Froidefond
2025-10-24 15:11:29 +02:00
parent 07c6bae2c4
commit ac5fa85185
22 changed files with 278 additions and 219 deletions

View File

@@ -12,7 +12,7 @@ export interface KomgaConfigData {
}
export interface KomgaConfig extends KomgaConfigData {
userId: string;
userId: number;
}
export interface TTLConfigData {
@@ -26,7 +26,7 @@ export interface TTLConfigData {
}
export interface TTLConfig extends TTLConfigData {
userId: string;
userId: number;
}
// Types liés à l'API Komga