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

26 lines
468 B
JSON
Raw Permalink Normal View History

2022-05-25 12:59:28 +00:00
{
"name": "MdbVersion",
"base": "VnModel",
"options": {
"mysql": {
"table": "mdbVersion"
}
},
"properties": {
"app": {
"type": "string",
2022-05-31 07:06:15 +00:00
"description": "The app name",
"id": true
2022-05-25 12:59:28 +00:00
},
"version": {
"type": "number"
}
},
"relations": {
"branch": {
"type": "belongsTo",
"model": "MdbBranch",
2022-05-27 06:23:52 +00:00
"foreignKey": "branchFk"
2022-05-25 12:59:28 +00:00
}
}
}