app: todos can be marked started (◐ in progress) without checking off — v0.3.0

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Bonna
2026-08-07 13:02:43 -05:00
parent 8da8272ad1
commit 3269032525
6 changed files with 11 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ model Todo {
id Int @id @default(autoincrement())
text String
done Boolean @default(false)
started Boolean @default(false)
parentId Int?
created DateTime @default(now())
}