moving dataconnect to dev
This commit is contained in:
17
backend/dataconnect/schema/teamHub.gql
Normal file
17
backend/dataconnect/schema/teamHub.gql
Normal file
@@ -0,0 +1,17 @@
|
||||
type TeamHub @table(name: "team_hubs") {
|
||||
id: UUID! @default(expr: "uuidV4()")
|
||||
|
||||
teamId: UUID!
|
||||
hubName: String!
|
||||
address: String!
|
||||
city: String!
|
||||
state: String!
|
||||
zipCode: String!
|
||||
managerName: String!
|
||||
isActive: Boolean! @default(expr: "true")
|
||||
departments: Any
|
||||
|
||||
createdAt: Timestamp @default(expr: "request.time")
|
||||
updatedAt: Timestamp @default(expr: "request.time")
|
||||
createdBy: String
|
||||
}
|
||||
Reference in New Issue
Block a user