salix/modules/mdb/back/models/mdbVersion.json

25 lines
440 B
JSON
Raw Normal View History

2022-05-25 12:59:28 +00:00
{
"name": "MdbVersion",
"base": "VnModel",
"options": {
"mysql": {
"table": "mdbVersion"
}
},
"properties": {
"app": {
"type": "string",
"description": "The app name"
},
"version": {
"type": "number"
}
},
"relations": {
"branch": {
"type": "belongsTo",
"model": "MdbBranch",
"foreignKey": "name"
}
}
}