1 Commits

Author SHA1 Message Date
AUDUL
47af0e226c Added custom index for job status (#77)
* Added custom index for job status
2025-07-04 09:26:51 +02:00
2 changed files with 26 additions and 0 deletions

View File

@@ -1,3 +1,28 @@
# Version 5.2.0
* Added custom index for job status
# Version 5.1.0
* Refactor SchemaDump command
# Version 5.0.1
* Fix compatibility with doctrine 4
# Version 5.0.0
* Initiate Kudos on dataflow-bundle
* Added Symfony 7 support
* Removed Symfony 6 compatibility
* Removed Symfony 5 compatibility
* Removed Symfony 4 compatibility
* Removed Symfony 3 compatibility
* Changed README.md
* Added CI
# Version 4.1.3
* Fix log exception argument typing
# Version 4.1.2
* Fix DBAL 2.12 compatibility break
# Version 4.1.0
* Added custom index for exception log

View File

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