salix/back/models/user-table-configuration.json

31 lines
622 B
JSON
Raw Normal View History

{
"name": "UserTableConfiguration",
"base": "VnModel",
"options": {
"mysql": {
"table": "salix.userTableConfiguration"
}
},
"properties": {
"id": {
"id": true,
"type": "Number",
"required": true
},
"tableCode": {
"type": "String",
"required": true
},
"configuration": {
"type": "String"
}
},
"relations": {
"worker": {
"type": "belongsTo",
"model": "Worker",
"foreignKey": "workerFk"
}
}
}