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/UserReaction.json
T
Yuri Kuznetsov 0f127091c2 reactions
2024-11-06 14:14:12 +02:00

40 lines
783 B
JSON

{
"fields": {
"type": {
"type": "varchar",
"maxLength": 10
},
"user": {
"type": "link"
},
"parent": {
"type": "linkParent"
},
"createdAt": {
"type": "datetime"
}
},
"links": {
"user": {
"type": "belongsTo",
"entity": "User"
},
"parent": {
"type": "belongsToParent",
"entityList": ["Note"]
}
},
"indexes": {
"parentUserType": {
"unique": true,
"columns": [
"parentId",
"parentType",
"userId",
"type"
]
}
},
"noDeletedAttribute": true
}