salix/back/models/notifcationAcl.json

21 lines
413 B
JSON
Raw Normal View History

2022-07-19 13:17:22 +00:00
{
"name": "NotificacionAcl",
"base": "VnModel",
"options": {
"mysql": {
"table": "notificacionAcl"
}
},
"relations": {
"notificacion": {
"type": "belongsTo",
"model": "Notificacion",
"foreignKey": "notificacionFk"
},
"role": {
"type": "belongsTo",
"model": "Role",
"foreignKey": "roleFk"
}
}
}