Files
duplicati/Duplicati/Server/Database/Database schema/1. Add Notifications.sql
T
Kenneth Skovhede a3e7ece869 Renamed the "Notifications" table to "Notification".
WARNING: If you are running from source, please manually rename the table or delete Duplicati-server.sqlite.

Rename SQL:
ALTER TABLE Notifications RENAME TO Notification
2014-08-05 23:00:16 +02:00

15 lines
336 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
);