{
	"name": "TicketLog",
	"base": "Log",
	"options": {
		"mysql": {
			"table": "ticketLog"
		}
	},
    "properties": {
        "id": {
            "type": "number",
            "id": true
        },
        "originFk": {
            "type": "number"
        },
        "userFk": {
            "type":"number"
        },
        "action": {
            "type": "string"
        },
        "creationDate": {
            "type": "date"
        },
        "description": {
            "type": "string"
        },
        "changedModel": {
            "type": "string"
        },
        "oldInstance": {
            "type": "any"
        },
        "newInstance": {
            "type": "any"
        },
        "changedModelId": {
            "type": "string"
        },
        "changedModelValue": {
            "type": "string"
        }
    }
}