From 928d04fbbdf973290bca99c75c0cdfb2eed5ce5e Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 6 May 2024 09:30:48 +0200 Subject: fix: oc_taskProcessing_tasks.identifier: notnull = false Signed-off-by: Marcel Klehr --- core/Migrations/Version30000Date20240429122720.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/Migrations/Version30000Date20240429122720.php b/core/Migrations/Version30000Date20240429122720.php index 1f53aacd66b..4bfbd86a6c7 100644 --- a/core/Migrations/Version30000Date20240429122720.php +++ b/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, -- cgit v1.2.3