made end time optional on time entry

This commit is contained in:
2025-01-01 22:00:26 +00:00
parent ac0a5e994f
commit bdbf4659e0
13 changed files with 374 additions and 148 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ model ProjectDbo {
model TimeEntryDbo {
id String @id @default(uuid())
startTime DateTime
endTime DateTime
endTime DateTime?
description String?
user UserDbo @relation(fields: [userId], references: [id])
userId String