2
0

🛂 Add isQuarantined field in workspace

This commit is contained in:
Baptiste Arnaud
2023-04-23 20:57:51 +02:00
parent bda34e3827
commit 69e1c4f20d
5 changed files with 12 additions and 11 deletions

View File

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

View File

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

View File

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