mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 03:20:25 +08:00
9 lines
153 B
SQL
9 lines
153 B
SQL
/*
|
|
Key/value storage for frontends
|
|
*/
|
|
CREATE TABLE "UIStorage" (
|
|
"Scheme" TEXT NOT NULL,
|
|
"Key" TEXT NOT NULL,
|
|
"Value" TEXT NOT NULL
|
|
);
|
|
|