@excali-boards/boards-api-client 1.1.66 → 1.1.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,11 +31,11 @@ model PersonalBoard {
31
31
  dbId String @id @default(uuid())
32
32
  boardId String @unique
33
33
  workspaceId String
34
- categoryId String?
34
+ categoryId String
35
35
 
36
36
  board Board @relation(fields: [boardId], references: [boardId], onDelete: Cascade)
37
37
  workspace PersonalWorkspace @relation(fields: [workspaceId], references: [dbId], onDelete: Cascade)
38
- category PersonalCategory? @relation(fields: [categoryId], references: [dbId], onDelete: SetNull)
38
+ category PersonalCategory @relation(fields: [categoryId], references: [dbId], onDelete: Cascade)
39
39
 
40
40
  @@index([workspaceId])
41
41
  @@index([categoryId])