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/ImportEntity.json
T
2020-07-24 10:56:06 +03:00

39 lines
805 B
JSON

{
"fields": {
"id": {
"type": "id",
"dbType": "int",
"autoincrement": true
},
"entityId": {
"type": "varchar",
"maxLength": 24,
"index": "entity"
},
"entityType": {
"type": "varchar",
"maxLength": 100,
"index": "entity"
},
"importId": {
"type": "varchar",
"maxLength": 24,
"index": true
},
"isImported": {
"type": "bool"
},
"isUpdated": {
"type": "bool"
},
"isDuplicate": {
"type": "bool"
}
},
"indexes": {
"entityImport": {
"columns": ["importId", "entityType"]
}
}
}