mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-24 19:58:04 +02:00
✨ Store participant timezone in response (#1811)
This commit is contained in:
parent
968e513dba
commit
965e969fd5
5 changed files with 101 additions and 87 deletions
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "participants" ADD COLUMN "time_zone" TEXT;
|
|
@ -76,6 +76,7 @@ model Participant {
|
|||
guestId String? @map("guest_id")
|
||||
pollId String @map("poll_id")
|
||||
locale String?
|
||||
timeZone String? @map("time_zone")
|
||||
createdAt DateTime @default(now()) @map("created_at")
|
||||
updatedAt DateTime? @updatedAt @map("updated_at")
|
||||
deleted Boolean @default(false)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue