Files
duplicati/Duplicati/Server/Database/Database schema/2. Add UIStorage.sql
T
Kenneth Skovhede 9223de7df9 Implemented a notification system.
The system works with the tray-icon, but the tray icon does not yet post notifications.
Some work is required to provide meaningful interaction when clicking the notifications.

Implemented a key/value store that allows the UI to save settings and other items.
2014-08-04 01:06:29 +02:00

10 lines
162 B
SQL

/*
Key/value storage for frontends
*/
CREATE TABLE "UIStorage" (
"Scheme" TEXT NOT NULL,
"Key" TEXT NOT NULL,
"Value" TEXT NOT NULL
);