feat: add tournament creation wizard with participant management and bulk game entry

This commit is contained in:
2026-03-29 19:58:15 -07:00
parent eb381d928c
commit 54fd6abb5e
10 changed files with 984 additions and 97 deletions
+1
View File
@@ -100,6 +100,7 @@ model EventParticipant {
player Player @relation(fields: [playerId], references: [id])
event Event @relation(fields: [eventId], references: [id])
@@unique([eventId, playerId])
@@map("event_participants")
}