We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5ad2db commit 99272d9Copy full SHA for 99272d9
1 file changed
src/SchemaProvider/DataflowSchemaProvider.php
@@ -32,6 +32,7 @@ public function createSchema()
32
$tableJob->addColumn('requested_date', 'datetime', ['notnull' => false]);
33
$tableJob->addColumn('count', 'integer', ['notnull' => false]);
34
$tableJob->addColumn('exceptions', 'json', ['notnull' => false]);
35
+ $tableJob->addColumn('exception_count', 'integer', ['notnull' => false]);
36
$tableJob->addColumn('start_time', 'datetime', ['notnull' => false]);
37
$tableJob->addColumn('end_time', 'datetime', ['notnull' => false]);
38
0 commit comments