mirror of
https://github.com/duplicati/duplicati.git
synced 2026-05-07 23:59:36 -04:00
10 lines
153 B
SQL
10 lines
153 B
SQL
/*
|
|
Key/value storage for frontends
|
|
*/
|
|
CREATE TABLE "UIStorage" (
|
|
"Scheme" TEXT NOT NULL,
|
|
"Key" TEXT NOT NULL,
|
|
"Value" TEXT NOT NULL
|
|
);
|
|
|