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
Build and Push Docker Image / build-and-push (push) Successful in 10m12s
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user