salix/modules/account/back/models/mail-alias-acl.json

32 lines
642 B
JSON
Raw Normal View History

2023-11-29 12:55:44 +00:00
{
"name": "MailAliasAcl",
2023-11-29 12:55:44 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "account.mailAliasAcl"
2023-11-29 12:55:44 +00:00
}
},
"properties": {
"mailAliasFk": {
"id": true,
2023-11-29 12:55:44 +00:00
"type": "number"
},
"roleFk": {
"id": true,
2023-11-29 12:55:44 +00:00
"type": "number"
}
},
"relations": {
"mailAlias": {
"type": "belongsTo",
"model": "MailAlias",
2023-11-29 12:55:44 +00:00
"foreignKey": "mailAliasFk"
},
"role": {
"type": "belongsTo",
"model": "Role",
2023-11-29 12:55:44 +00:00
"foreignKey": "roleFk"
}
}
}