2018-11-12 12:23:47 +00:00
|
|
|
{
|
2019-01-31 13:14:39 +00:00
|
|
|
"name": "TicketLog",
|
2018-11-12 12:23:47 +00:00
|
|
|
"base": "VnModel",
|
2019-01-31 13:14:39 +00:00
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "ticketLog"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"id": true,
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number",
|
2019-01-31 13:14:39 +00:00
|
|
|
"forceId": false
|
|
|
|
},
|
|
|
|
"originFk": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number",
|
2019-01-31 13:14:39 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"userFk": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number"
|
2019-01-31 13:14:39 +00:00
|
|
|
},
|
|
|
|
"action": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string",
|
2019-01-31 13:14:39 +00:00
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"changedModel": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2019-01-31 13:14:39 +00:00
|
|
|
},
|
2019-06-05 11:51:34 +00:00
|
|
|
"oldInstance": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "object"
|
2019-01-31 13:14:39 +00:00
|
|
|
},
|
2019-06-05 11:51:34 +00:00
|
|
|
"newInstance": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "object"
|
2019-01-31 13:14:39 +00:00
|
|
|
},
|
2019-06-05 11:51:34 +00:00
|
|
|
"creationDate": {
|
2022-05-16 08:19:43 +00:00
|
|
|
"type": "date"
|
2019-01-31 13:14:39 +00:00
|
|
|
},
|
2019-06-05 11:51:34 +00:00
|
|
|
"changedModelId": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "number"
|
2019-01-31 13:14:39 +00:00
|
|
|
},
|
2019-06-05 11:51:34 +00:00
|
|
|
"changedModelValue": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2019-01-31 13:14:39 +00:00
|
|
|
},
|
2019-06-05 11:51:34 +00:00
|
|
|
"description": {
|
2022-05-12 07:47:47 +00:00
|
|
|
"type": "string"
|
2019-01-31 13:14:39 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"user": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Account",
|
|
|
|
"foreignKey": "userFk"
|
|
|
|
}
|
2019-03-20 10:49:11 +00:00
|
|
|
},
|
|
|
|
"scope": {
|
|
|
|
"order": ["creationDate DESC", "id DESC"]
|
|
|
|
}
|
2018-11-12 12:23:47 +00:00
|
|
|
}
|