2020-03-02 10:57:09 +00:00
|
|
|
{
|
|
|
|
"name": "EntryLog",
|
|
|
|
"base": "VnModel",
|
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "entryLog"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"id": true,
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number",
|
2020-09-11 12:51:58 +00:00
|
|
|
"forceId": false
|
2020-03-02 10:57:09 +00:00
|
|
|
},
|
|
|
|
"originFk": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number",
|
2020-03-02 10:57:09 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"userFk": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number"
|
2020-03-02 10:57:09 +00:00
|
|
|
},
|
|
|
|
"action": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string",
|
2020-03-02 10:57:09 +00:00
|
|
|
"required": true
|
|
|
|
},
|
2020-09-11 12:51:58 +00:00
|
|
|
"changedModel": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2020-09-11 12:51:58 +00:00
|
|
|
},
|
|
|
|
"oldInstance": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "object"
|
2020-09-11 12:51:58 +00:00
|
|
|
},
|
|
|
|
"newInstance": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "object"
|
2020-09-11 12:51:58 +00:00
|
|
|
},
|
2020-03-02 10:57:09 +00:00
|
|
|
"creationDate": {
|
2022-05-16 08:19:43 +00:00
|
|
|
"type": "date"
|
2020-03-02 10:57:09 +00:00
|
|
|
},
|
2020-09-11 12:51:58 +00:00
|
|
|
"changedModelId": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2020-09-11 12:51:58 +00:00
|
|
|
},
|
|
|
|
"changedModelValue": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2020-09-11 12:51:58 +00:00
|
|
|
},
|
2020-03-02 10:57:09 +00:00
|
|
|
"description": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2020-03-02 10:57:09 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"user": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Account",
|
|
|
|
"foreignKey": "userFk"
|
2020-03-04 07:58:57 +00:00
|
|
|
}
|
2020-03-02 10:57:09 +00:00
|
|
|
},
|
|
|
|
"scope": {
|
|
|
|
"order": ["creationDate DESC", "id DESC"]
|
|
|
|
}
|
2020-03-04 07:58:57 +00:00
|
|
|
}
|