diff options
author | Julien Veyssier <julien-nc@posteo.net> | 2024-07-15 13:30:59 +0200 |
---|---|---|
committer | Julien Veyssier <julien-nc@posteo.net> | 2024-07-23 17:12:38 +0200 |
commit | c120a64ba2031817113a0194fd6f2337a4dc420b (patch) | |
tree | a3c9734e2dcc5a86502a2768456b9ce34c556b3c /core/Migrations | |
parent | df086a8c207ec6765a94955f6638fa7aacf4c06a (diff) | |
download | nextcloud-server-c120a64ba2031817113a0194fd6f2337a4dc420b.tar.gz nextcloud-server-c120a64ba2031817113a0194fd6f2337a4dc420b.zip |
feat(taskprocessing): add occ commands to list tasks and compute stats
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version30000Date20240708160048.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Migrations/Version30000Date20240708160048.php b/core/Migrations/Version30000Date20240708160048.php index a85eea2c974..0b5596a05a9 100644 --- a/core/Migrations/Version30000Date20240708160048.php +++ b/core/Migrations/Version30000Date20240708160048.php @@ -34,17 +34,17 @@ class Version30000Date20240708160048 extends SimpleMigrationStep { $table->addColumn('scheduled_at', Types::INTEGER, [ 'notnull' => false, - 'default' => 0, + 'default' => null, 'unsigned' => true, ]); $table->addColumn('started_at', Types::INTEGER, [ 'notnull' => false, - 'default' => 0, + 'default' => null, 'unsigned' => true, ]); $table->addColumn('ended_at', Types::INTEGER, [ 'notnull' => false, - 'default' => 0, + 'default' => null, 'unsigned' => true, ]); |