37 lines
747 B
JSON
37 lines
747 B
JSON
|
{
|
||
|
"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"
|
||
|
}
|
||
|
}
|
||
|
}
|