Files
2026-03-18 15:04:18 +01:00

14 lines
289 B
GraphQL

type Role @table(name: "roles") {
id: UUID! @default(expr: "uuidV4()")
name: String!
vendorId: UUID!
roleCategoryId: UUID!
costPerHour: Float!
createdAt: Timestamp @default(expr: "request.time")
updatedAt: Timestamp @default(expr: "request.time")
createdBy: String
}