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
+4
View File
@@ -63,6 +63,9 @@ model Task {
priority Int @default(0)
sortOrder Int @default(0)
isDeleted Boolean @default(false)
deletedAt DateTime?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@ -75,6 +78,7 @@ model Task {
@@index([userId])
@@index([listId])
@@index([parentId])
@@index([isDeleted])
}
model Tag {