From 43036855b00cce4a33789bdfed249865a2bec79d Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 6 May 2024 09:30:48 +0200 Subject: [PATCH] fix: oc_taskProcessing_tasks.identifier: notnull = false Signed-off-by: Marcel Klehr --- core/Migrations/Version30000Date20240429122720.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/Migrations/Version30000Date20240429122720.php b/core/Migrations/Version30000Date20240429122720.php index 1f53aacd66b85..4bfbd86a6c70f 100644 --- a/core/Migrations/Version30000Date20240429122720.php +++ b/core/Migrations/Version30000Date20240429122720.php @@ -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' => '', ]); @@ -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,