salix/back/models/user-config-view.json

34 lines
663 B
JSON

{
"name": "UserConfigView",
"base": "VnModel",
"options": {
"mysql": {
"table": "salix.userConfigView"
}
},
"properties": {
"id": {
"id": true,
"type": "Number"
},
"userFk": {
"type": "String",
"required": true
},
"tableCode": {
"type": "String",
"required": true
},
"configuration": {
"type": "Object"
}
},
"relations": {
"user": {
"type": "belongsTo",
"model": "Account",
"foreignKey": "userFk"
}
}
}