Files
duplicati/Duplicati/GUI/Datamodel/Database schema/9. Add Schedule Metadata table.sql
T
kenneth@hexad.dk a60bd9511f Large refactoring, removing duplicate code in the former Duplicati gui, because it is now hosted in the server.
Not 100% tested, because it is supposed to go away soon, but right now it is the only way to create a new backup.
Also moved database schema and upgrade information/code into the data model project.

git-svn-id: https://duplicati.googlecode.com/svn/trunk@1275 59da171f-624f-0410-aa54-27559c288bec
2012-05-14 18:53:07 +00:00

7 lines
151 B
SQL

CREATE TABLE "ScheduleMetadata" (
"ID" INTEGER PRIMARY KEY,
"ScheduleID" INTEGER NULL,
"Name" TEXT NULL,
"Value" TEXT NULL
);