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