feat(setup): add ability to skip setup wizard and update user model
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ALTER TABLE "User" ADD COLUMN "setupSkipped" BOOLEAN NOT NULL DEFAULT false;
|
||||
@@ -36,6 +36,7 @@ model User {
|
||||
passwordHash String @db.VarChar(256)
|
||||
isAdmin Boolean @default(false)
|
||||
isFounder Boolean @default(false)
|
||||
setupSkipped Boolean @default(false)
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
|
||||
|
||||
Reference in New Issue
Block a user