Files
Krow-workspace/dataconnect/schema/enterprise.gql
2025-11-26 15:02:51 -05:00

10 lines
325 B
GraphQL

type Enterprise @table(name: "enterprise") {
id: UUID! @default(expr: "uuidV4()")
enterpriseNumber: String!
enterpriseName: String!
enterpriseCode: String!
createdDate: Timestamp @default(expr: "request.time")
updatedDate: Timestamp @default(expr: "request.time")
createdBy: String @default(expr: "auth.uid")
}