2022-07-19 13:17:22 +00:00
|
|
|
{
|
2022-07-20 12:54:50 +00:00
|
|
|
"name": "Notification",
|
2022-07-19 13:17:22 +00:00
|
|
|
"base": "VnModel",
|
|
|
|
"options": {
|
|
|
|
"mysql": {
|
2022-07-20 12:54:50 +00:00
|
|
|
"table": "util.notification"
|
2022-07-19 13:17:22 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"type": "number",
|
|
|
|
"id": true,
|
|
|
|
"description": "Identifier"
|
|
|
|
},
|
|
|
|
"name": {
|
2022-07-25 06:25:10 +00:00
|
|
|
"type": "string",
|
|
|
|
"required": true
|
2022-07-19 13:17:22 +00:00
|
|
|
},
|
|
|
|
"description": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
2022-07-25 06:25:10 +00:00
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"subscription": {
|
|
|
|
"type": "hasMany",
|
|
|
|
"model": "NotificationSubscription",
|
|
|
|
"foreignKey": "notificationFk"
|
|
|
|
}
|
2022-07-19 13:17:22 +00:00
|
|
|
}
|
|
|
|
}
|