revert(db): back to 228 (no tasks)

pull/1348/head
Elian Doran 2025-03-06 23:45:06 +07:00
parent 89767d0135
commit ee7b97ae56
No known key found for this signature in database
2 changed files with 1 additions and 11 deletions

@ -1,10 +0,0 @@
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
);

@ -5,7 +5,7 @@ import build from "./build.js";
import packageJson from "../../package.json" with { type: "json" };
import dataDir from "./data_dir.js";
const APP_DB_VERSION = 229;
const APP_DB_VERSION = 228;
const SYNC_VERSION = 35;
const CLIPPER_PROTOCOL_VERSION = "1.0";