31 lines
624 B
JSON
31 lines
624 B
JSON
{
|
|
"name": "NotificationAcl",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "util.notificationAcl"
|
|
}
|
|
},
|
|
"properties":{
|
|
"notificationFk": {
|
|
"id": true,
|
|
"type": "number"
|
|
},
|
|
"roleFk":{
|
|
"id": true,
|
|
"type": "number"
|
|
}
|
|
},
|
|
"relations": {
|
|
"notification": {
|
|
"type": "belongsTo",
|
|
"model": "Notification",
|
|
"foreignKey": "notificationFk"
|
|
},
|
|
"role": {
|
|
"type": "belongsTo",
|
|
"model": "Role",
|
|
"foreignKey": "roleFk"
|
|
}
|
|
}
|
|
} |