Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| ehi_task_id | BIGINT | 19 | √ | null |
|
|
|||||
| ehi_export_job_id | INT | 10 | null |
|
|
||||||
| export_document_id | INT | 10 | √ | NULL |
|
|
FK to documents.id - represents the document result file that was created as part of this task |
||||
| creation_date | DATETIME | 19 | current_timestamp() |
|
|
||||||
| completion_date | DATETIME | 19 | current_timestamp() |
|
|
||||||
| status | VARCHAR | 20 | 'pending' |
|
|
pending=task export has not started, processing=task export in progress, failed=error occurred in the task, completed=export task completed without errors |
|||||
| error_message | TEXT | 65535 | √ | NULL |
|
|
The error that occurred in the export process, only populated if status=failed |
||||
| exported_result | TEXT | 65535 | √ | NULL |
|
|
The JSON encoded result of the export process, populated during processing for status updates |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| PRIMARY | Primary key | Asc | ehi_task_id |
| FK_task_ehi_export_document_id | Performance | Asc | export_document_id |
| FK_task_ehi_export_job_id | Performance | Asc | ehi_export_job_id |