Added appointment table

This commit is contained in:
PxlLoewe
2025-02-22 17:39:22 +01:00
parent 8e1e9a67be
commit 00efe207b2
7 changed files with 192 additions and 38 deletions

View File

@@ -17,7 +17,7 @@ model EventAppointment {
presenterId String
// relations:
Users User[] @relation("EventAppointmentUser")
participants Participant[]
Participants Participant[]
Event Event @relation(fields: [eventId], references: [id])
Presenter User @relation(fields: [presenterId], references: [id])
}