1 Commits

Author SHA1 Message Date
AUDUL
9d76b45771 Added custom index for job status (#78)
* Added custom index for job status
2025-07-04 09:26:13 +02:00
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
# Version 4.1.0
# Version 4.2.0
* Added custom index for job status
# Version 4.1.0
* Added custom index for exception log
# Version 4.0.0

View File

@@ -48,6 +48,7 @@ class DataflowSchemaProvider
$tableSchedule->addColumn('enabled', 'boolean', ['notnull' => true]);
$tableJob->addForeignKeyConstraint($tableSchedule, ['scheduled_dataflow_id'], ['id']);
$tableJob->addIndex(['status'], 'idx_status');
return $schema;
}