Format prisma schema

This commit is contained in:
Luke Vella 2024-12-16 17:32:15 +00:00
parent 17dc1ec013
commit 78b4ce3eb9
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C

View file

@ -199,7 +199,7 @@ model Participant {
model Option {
id String @id @default(cuid())
startTime DateTime @db.Timestamp(0) @map("start_time")
startTime DateTime @map("start_time") @db.Timestamp(0)
duration Int @default(0) @map("duration_minutes")
pollId String @map("poll_id")
poll Poll @relation(fields: [pollId], references: [id])