mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-02-22 14:18:31 -06:00
feat(tasks): add SQL migration
This commit is contained in:
10
db/migrations/0229__tasks.sql
Normal file
10
db/migrations/0229__tasks.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE IF NOT EXISTS "tasks"
|
||||
(
|
||||
"taskId" TEXT NOT NULL PRIMARY KEY,
|
||||
"parentNoteId" TEXT NOT NULL,
|
||||
"title" TEXT NOT NULL DEFAULT "",
|
||||
"dueDate" INTEGER,
|
||||
"isDone" INTEGER NOT NULL DEFAULT 0,
|
||||
"isDeleted" INTEGER NOT NULL DEFAULT 0,
|
||||
"utcDateModified" TEXT NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user