duplicati/Duplicati/Library/RestAPI/Database/Database schema/3. Add temp file storage.sql
Kenneth Skovhede d1008bc7a2 Fix the Duplicati.Library.RestAPI path.
It was previously located in the root, but placed correctly in the solution file.
2024-08-27 08:30:26 +02:00

11 lines
223 B
SQL

/*
Long-term temporary file records
*/
CREATE TABLE "TempFile" (
"ID" INTEGER PRIMARY KEY,
"Origin" TEXT NOT NULL,
"Path" TEXT NOT NULL,
"Timestamp" INTEGER NOT NULL,
"Expires" INTEGER NOT NULL
);