feat(job-completion): add message and photo upload to job completion

This commit is contained in:
2026-01-13 11:41:21 +01:00
parent e104a9d377
commit 97d8f12fc0
14 changed files with 265 additions and 25 deletions

View File

@@ -34,6 +34,9 @@ model Booking {
completedAt DateTime?
createdAt DateTime @default(now())
completionMessage String?
completionImage String?
@@unique([planId, date, sitterName])
}