27 lines
494 B
JSON
27 lines
494 B
JSON
|
{
|
||
|
"name": "ClientSms",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "clientSms"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "number",
|
||
|
"id": true,
|
||
|
"description": "Identifier"
|
||
|
},
|
||
|
"clientFk": {
|
||
|
"type": "number"
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"sms": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "Sms",
|
||
|
"foreignKey": "smsFk"
|
||
|
}
|
||
|
}
|
||
|
}
|