dashboard: allow accepted users in

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-03-11 21:17:11 +01:00
parent 52a8195ad1
commit 4786adb052
5 changed files with 51 additions and 23 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "waitlist" ADD COLUMN "accepted" BOOLEAN NOT NULL DEFAULT false;

View File

@@ -153,6 +153,7 @@ model Waitlist {
email String @unique
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
accepted Boolean @default(false)
@@map("waitlist")
}