Browse Source

fix: oc_taskProcessing_tasks.identifier: notnull = false

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
pull/45094/head
Marcel Klehr 1 month ago
parent
commit
928d04fbbd
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      core/Migrations/Version30000Date20240429122720.php

+ 2
- 1
core/Migrations/Version30000Date20240429122720.php 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,

Loading…
Cancel
Save