This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Resources/metadata/entityDefs/Notification.json
T
2015-08-07 15:30:50 +03:00

52 lines
1021 B
JSON

{
"fields": {
"number": {
"type": "autoincrement",
"index": true
},
"data": {
"type": "jsonObject"
},
"noteData": {
"type": "jsonObject",
"notStorable": true
},
"type": {
"type": "varchar"
},
"read": {
"type": "bool"
},
"user": {
"type": "link"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"message": {
"type": "text"
}
},
"links": {
"user": {
"type": "belongsTo",
"entity": "User"
}
},
"collection": {
"sortBy": "number",
"asc": false
},
"indexes": {
"createdAt": {
"type": "index",
"columns": ["createdAt"]
},
"user": {
"type": "index",
"columns": ["userId", "createdAt"]
}
}
}