From c120a64ba2031817113a0194fd6f2337a4dc420b Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Mon, 15 Jul 2024 13:30:59 +0200 Subject: feat(taskprocessing): add occ commands to list tasks and compute stats Signed-off-by: Julien Veyssier --- core/Migrations/Version30000Date20240708160048.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'core/Migrations') 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, ]); -- cgit v1.2.3