29 lines
532 B
JSON
29 lines
532 B
JSON
{
|
||
"name": "locker",
|
||
"description": "Employee´s locker",
|
||
"base": "Loggable",
|
||
"options": {
|
||
"mysql": {
|
||
"table": "locker"
|
||
}
|
||
},
|
||
"properties": {
|
||
"code": {
|
||
"type": "string"
|
||
},
|
||
"gender": {
|
||
"type": "string"
|
||
},
|
||
"workerFk": {
|
||
"type": "number"
|
||
}
|
||
},
|
||
"relations": {
|
||
"id": {
|
||
"type": "belongsTo",
|
||
"model": "worker",
|
||
"foreignKey": "workerFk"
|
||
}
|
||
}
|
||
}
|