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/StarSubscription.json
T
Yuri Kuznetsov b881c11672 star limit
2024-04-17 14:19:40 +03:00

28 lines
562 B
JSON

{
"fields": {
"id": {
"type": "id",
"dbType": "bigint",
"autoincrement": true
},
"entity": {
"type": "linkParent"
},
"user": {
"type": "link"
},
"createdAt": {
"type": "datetime"
}
},
"indexes": {
"userEntity": {
"unique": true,
"columns": ["userId", "entityId", "entityType"]
},
"userEntityType": {
"columns": ["userId", "entityType"]
}
}
}