dashboard: allow accepted users in
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "waitlist" ADD COLUMN "accepted" BOOLEAN NOT NULL DEFAULT false;
|
||||
@@ -153,6 +153,7 @@ model Waitlist {
|
||||
email String @unique
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @default(now()) @updatedAt
|
||||
accepted Boolean @default(false)
|
||||
|
||||
@@map("waitlist")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user