salix/modules/client/back/models/client-contact.json

32 lines
639 B
JSON

{
"name": "ClientContact",
"description": "Client phone contacts",
"base": "Loggable",
"options": {
"mysql": {
"table": "clientContact"
}
},
"validateUpsert": true,
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"name": {
"type": "string"
},
"phone": {
"type": "string"
}
},
"relations": {
"client": {
"type": "belongsTo",
"model": "Client",
"foreignKey": "clientFk"
}
}
}