archive: add appConfig, icon and appStoreIcon

This commit is contained in:
Girish Ramakrishnan
2024-12-09 23:20:44 +01:00
parent cec2106cfe
commit 2ad93c114e
8 changed files with 63 additions and 9 deletions
+3
View File
@@ -157,6 +157,9 @@ CREATE TABLE IF NOT EXISTS backups(
format VARCHAR(16) DEFAULT "tgz",
preserveSecs INTEGER DEFAULT 0,
archive BOOLEAN DEFAULT 0,
appStoreIcon MEDIUMBLOB, /* only valid with archive */
icon MEDIUMBLOB, /* only valid with archive */
appConfigJson TEXT, /* only valid with archive */
INDEX creationTime_index (creationTime),
PRIMARY KEY (id));