2023-04-12 08:02:06 +00:00
|
|
|
{
|
|
|
|
"name": "DeviceProductionLog",
|
2023-04-24 17:10:04 +00:00
|
|
|
"base": "Log",
|
2023-04-12 08:02:06 +00:00
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "deviceProductionLog"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"id": true,
|
|
|
|
"type": "number",
|
|
|
|
"forceId": false
|
|
|
|
},
|
|
|
|
"originFk": {
|
|
|
|
"type": "number",
|
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"userFk": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"deviceProduction": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"action": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true
|
|
|
|
},
|
|
|
|
"created": {
|
|
|
|
"type": "date"
|
|
|
|
},
|
|
|
|
"oldInstance": {
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"newInstance": {
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"changedModel": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"changedModelId": {
|
|
|
|
"type": "number"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"user": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Account",
|
|
|
|
"foreignKey": "userFk"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scope": {
|
|
|
|
"order": ["created DESC", "id DESC"]
|
|
|
|
}
|
|
|
|
}
|