salix/back/models/notifcationQueue.json

37 lines
747 B
JSON
Raw Normal View History

2022-07-19 13:17:22 +00:00
{
"name": "NotificacionQueue",
"base": "VnModel",
"options": {
"mysql": {
"table": "notificacionQueue"
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"params": {
"type": "string"
},
"status": {
"type": "string"
},
"created": {
"type": "date"
}
},
"relations": {
"notificacion": {
"type": "belongsTo",
"model": "Notificacion",
"foreignKey": "notificacionFk"
},
"author": {
"type": "belongsTo",
"model": "User",
"foreignKey": "authorFk"
}
}
}