14 lines
289 B
GraphQL
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
|
|
}
|