Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

chore: remove waitlisting #266

Merged
merged 1 commit into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .yarn/install-state.gz
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "accounts" ALTER COLUMN "skipWaitlist" SET DEFAULT true;
2 changes: 1 addition & 1 deletion packages/backend/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ model accounts {
private_token String @unique
public_token String @unique
domain String @unique @default("")
skipWaitlist Boolean @default(false)
skipWaitlist Boolean @default(true)
workspaceName String?
users users[]
environments environments[]
Expand Down