26 lines
339 B
JSON
26 lines
339 B
JSON
{
|
|
"name": "MailForward",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "VnUser.mailForward"
|
|
}
|
|
},
|
|
"properties": {
|
|
"VnUser": {
|
|
"id": true
|
|
},
|
|
"forwardTo": {
|
|
"type": "string",
|
|
"required": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"user": {
|
|
"type": "belongsTo",
|
|
"model": "VnUser",
|
|
"foreignKey": "VnUser"
|
|
}
|
|
}
|
|
}
|