Files
Krow-workspace/backend/dataconnect/schema/costCenter.gql
José Salazar 3cf791ddbf merge with dev
2026-02-26 11:17:01 -05:00

10 lines
253 B
GraphQL

type CostCenter @table(name: "cost_centers") {
id: UUID! @default(expr: "uuidV4()")
name: String!
businessId: UUID!
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
createdBy: String
}