feat: allow sitters to mark jobs as completed with notification

This commit is contained in:
2026-01-12 23:16:23 +01:00
parent 3600ba665d
commit 22183a8d59
6 changed files with 93 additions and 19 deletions

View File

@@ -30,6 +30,7 @@ model Booking {
date DateTime
sitterName String?
type String @default("SITTER") // "SITTER" or "OWNER_HOME"
completedAt DateTime?
createdAt DateTime @default(now())
@@unique([planId, date, sitterName])