mirror of
https://github.com/nextcloud/server.git
synced 2026-05-19 08:25:56 -04:00
fix: oc_taskProcessing_tasks.identifier: notnull = false
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
9a2cd6b914
commit
928d04fbbd
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Reference in a new issue