salix/back/models/notificationQueue.json

37 lines
752 B
JSON
Raw Normal View History

2022-07-19 13:17:22 +00:00
{
2022-07-20 12:54:50 +00:00
"name": "NotificationQueue",
2022-07-19 13:17:22 +00:00
"base": "VnModel",
"options": {
"mysql": {
2022-07-20 12:54:50 +00:00
"table": "util.notificationQueue"
2022-07-19 13:17:22 +00:00
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"params": {
"type": "string"
},
"status": {
"type": "string"
},
"created": {
"type": "date"
}
},
"relations": {
2022-07-20 12:54:50 +00:00
"notification": {
2022-07-19 13:17:22 +00:00
"type": "belongsTo",
2022-07-20 12:54:50 +00:00
"model": "Notification",
"foreignKey": "notificationFk"
2022-07-19 13:17:22 +00:00
},
"author": {
"type": "belongsTo",
"model": "User",
"foreignKey": "authorFk"
}
}
}