37 lines
491 B
JSON
37 lines
491 B
JSON
{
|
|
"name": "UserAccess",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "salix.userAccess"
|
|
}
|
|
},
|
|
"properties": {
|
|
"userFk": {
|
|
"type": "number",
|
|
"required": true,
|
|
"id": true
|
|
},
|
|
"ip": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"agent": {
|
|
"type": "string"
|
|
},
|
|
"platform": {
|
|
"type": "string"
|
|
},
|
|
"browser": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"relations": {
|
|
"user": {
|
|
"type": "belongsTo",
|
|
"model": "Account",
|
|
"foreignKey": "userFk"
|
|
}
|
|
}
|
|
}
|