feat(server): add workspace name and avatarKey to database (#10513)

close CLOUD-153
This commit is contained in:
fengmk2
2025-03-06 15:25:05 +00:00
parent c76b2504fe
commit 81694a1144
8 changed files with 90 additions and 15 deletions

View File

@@ -101,6 +101,8 @@ model Workspace {
// workspace level feature flags
enableAi Boolean @default(true) @map("enable_ai")
enableUrlPreview Boolean @default(false) @map("enable_url_preview")
name String? @db.VarChar
avatarKey String? @map("avatar_key") @db.VarChar
features WorkspaceFeature[]
docs WorkspaceDoc[]