aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Migrations/Version30000Date20240429122720.php3
1 files changed, 2 insertions, 1 deletions
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,