fix: oc_taskProcessing_tasks.identifier: notnull = false

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2024-05-06 09:30:48 +02:00
parent 9a2cd6b914
commit 928d04fbbd

View file

@ -80,7 +80,7 @@ class Version30000Date20240429122720 extends SimpleMigrationStep {
'default' => '',
]);
$table->addColumn('identifier', Types::STRING, [
'notnull' => true,
'notnull' => false,
'length' => 255,
'default' => '',
]);
@ -95,6 +95,7 @@ class Version30000Date20240429122720 extends SimpleMigrationStep {
]);
$table->addColumn('progress', Types::FLOAT, [
'notnull' => false,
'default' => 0,
]);
$table->addColumn('error_message', Types::STRING, [
'notnull' => false,