Added journal page in admin-view

This commit is contained in:
2026-05-26 22:49:39 +02:00 Verified
parent 1c46b14724
commit fc126334c4
6 changed files with 336 additions and 22 deletions
+7
View File
@@ -53,3 +53,10 @@ model Attendance {
// A youth can only have one specific shift record per day
@@unique([date, youthId, shiftId])
}
model DailyLog {
id String @id @default(cuid())
date String @unique
content String
updatedAt DateTime @updatedAt
}