2024-03-14 07:36:19 +00:00
|
|
|
{
|
|
|
|
"name": "WorkerActivity",
|
|
|
|
"base": "VnModel",
|
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "workerActivity"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"id": true,
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"created": {
|
|
|
|
"type": "date"
|
|
|
|
},
|
|
|
|
"model": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"event": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"type": "string"
|
2024-07-30 10:36:02 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"workerFk": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Worker",
|
|
|
|
"foreignKey": "workerFk"
|
2024-03-14 07:36:19 +00:00
|
|
|
},
|
2024-07-30 10:36:02 +00:00
|
|
|
"workerActivityTypeFk": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "WorkerActivityType",
|
|
|
|
"foreignKey": "workerActivityTypeFk"
|
2024-03-14 07:36:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|