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/UniqueId.json
T
Yuri Kuznetsov 8fa0fae265 add indexes
2014-12-02 16:13:00 +02:00

31 lines
585 B
JSON

{
"fields": {
"name": {
"type": "varchar",
"required": true,
"index": true
},
"data": {
"type": "jsonObject"
},
"createdAt": {
"type": "datetime",
"readOnly": true
},
"createdBy": {
"type": "link",
"readOnly": true
}
},
"links": {
"createdBy": {
"type": "belongsTo",
"entity": "User"
}
},
"collection": {
"sortBy": "createdAt",
"asc": false
}
}