duplicati/Duplicati/Library/RestAPI/Database/Database schema/1. Add Notifications.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

14 lines
322 B
SQL

/*
Notifications not yet acknowledged by the user
*/
CREATE TABLE "Notification" (
"ID" INTEGER PRIMARY KEY,
"Type" TEXT NOT NULL,
"Title" TEXT NOT NULL,
"Message" TEXT NOT NULL,
"Exception" TEXT NOT NULL,
"BackupID" TEXT NULL,
"Action" TEXT NOT NULL,
"Timestamp" INTEGER NOT NULL
);