salix/back/models/app-version-control.json

25 lines
336 B
JSON
Raw Permalink Normal View History

2022-04-27 12:17:41 +00:00
{
"name": "MobileAppVersionControl",
"base": "VnModel",
"options": {
"mysql": {
"table": "vn.mobileAppVersionControl"
}
},
"properties": {
"id": {
"type": "number",
"id": true
},
"appName": {
"type": "string"
},
"version": {
"type": "string"
},
2022-05-20 10:53:10 +00:00
"isVersionCritical": {
"type": "boolean"
2022-04-27 12:17:41 +00:00
}
}
}