Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions src/SchemaProvider/DataflowSchemaProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public function createSchema()
$tableSchedule->addColumn('enabled', 'boolean', ['notnull' => true]);

$tableJob->addForeignKeyConstraint($tableSchedule->getName(), ['scheduled_dataflow_id'], ['id']);
$tableJob->addIndex(['status'], 'idx_status');

return $schema;
}
Expand Down