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/Subscription.json
T
Yuri Kuznetsov 5d3996ae03 orm usage
2020-07-23 15:02:02 +03:00

30 lines
625 B
JSON

{
"fields": {
"id": {
"type": "id",
"dbType": "int",
"autoincrement": true
},
"entityId": {
"type": "varchar",
"maxLength": 24,
"index": "entity"
},
"entityType": {
"type": "varchar",
"maxLength": 100,
"index": "entity"
},
"userId": {
"type": "varchar",
"maxLength": 24,
"index": true
}
},
"indexes": {
"userEntity": {
"columns": ["userId", "entityId", "entityType"]
}
}
}