new teamHub entity

This commit is contained in:
José Salazar
2025-11-26 11:45:43 -05:00
parent 8270587f05
commit 008be23145
3 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
type TeamHub @table(name: "team_hubs") {
id: UUID! @default(expr: "uuidV4()")
teamId: UUID!
hubName: String!
departments: String
createdDate: Timestamp @default(expr: "request.time")
updatedDate: Timestamp @default(expr: "request.time")
createdBy: String @default(expr: "auth.uid")
}