fix: oc_taskProcessing_tasks.identifier: notnull = false

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
pull/45094/head
Marcel Klehr 2 years ago
parent 9a2cd6b914
commit 928d04fbbd
  1. 3
      core/Migrations/Version30000Date20240429122720.php

@ -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,

Loading…
Cancel
Save