feat(core): full database soft-delete, live sidebar counts and robust subtask undo/restore across all modes
Build and Push Docker Image / build-and-push (push) Successful in 10m12s

This commit is contained in:
2026-08-22 00:26:45 +09:00
parent 72fefe89b0
commit 06d5344aef
9 changed files with 269 additions and 62 deletions
@@ -0,0 +1,6 @@
-- AlterTable
ALTER TABLE "Task" ADD COLUMN "isDeleted" BOOLEAN NOT NULL DEFAULT false;
ALTER TABLE "Task" ADD COLUMN "deletedAt" TIMESTAMP(3);
-- CreateIndex
CREATE INDEX "Task_isDeleted_idx" ON "Task"("isDeleted");