27 lines
367 B
JSON
27 lines
367 B
JSON
{
|
|
"name": "UserAccount",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "account.account"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"id": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"user": {
|
|
"type": "belongsTo",
|
|
"model": "Account",
|
|
"foreignKey": "id"
|
|
},
|
|
"aliases": {
|
|
"type": "hasMany",
|
|
"model": "MailAliasAccount",
|
|
"foreignKey": "account"
|
|
}
|
|
}
|
|
}
|