Skip to content

Commit

Permalink
fix: oc_taskProcessing_tasks.identifier: notnull = false
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed May 6, 2024
1 parent 7090bde commit 4303685
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/Migrations/Version30000Date20240429122720.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
'default' => '',
]);
$table->addColumn('identifier', Types::STRING, [
'notnull' => true,
'notnull' => false,
'length' => 255,
'default' => '',
]);
Expand All @@ -95,6 +95,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
]);
$table->addColumn('progress', Types::FLOAT, [
'notnull' => false,
'default' => 0,
]);
$table->addColumn('error_message', Types::STRING, [
'notnull' => false,
Expand Down

0 comments on commit 4303685

Please sign in to comment.