2
0

🛂 Add isSuspended prop on workspace

This commit is contained in:
Baptiste Arnaud
2023-07-04 14:56:36 +02:00
parent 92740ad2ff
commit 5a05310a9c
9 changed files with 95 additions and 13 deletions

View File

@@ -97,6 +97,7 @@ model Workspace {
customStorageLimit Int?
customSeatsLimit Int?
isQuarantined Boolean @default(false)
isSuspended Boolean @default(false)
themeTemplates ThemeTemplate[]
}

View File

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

View File

@@ -91,6 +91,7 @@ model Workspace {
customStorageLimit Int?
customSeatsLimit Int?
isQuarantined Boolean @default(false)
isSuspended Boolean @default(false)
themeTemplates ThemeTemplate[]
}