From ab43d6a11e7210a39ea49bb30b79c1d06b095efc Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 29 Oct 2020 17:58:12 +0100 Subject: [PATCH] Adjust execution duration to 0 Signed-off-by: Vincent Petry --- core/Migrations/Version13000Date20170718121200.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php index 9a1815c09a..481de74b21 100644 --- a/core/Migrations/Version13000Date20170718121200.php +++ b/core/Migrations/Version13000Date20170718121200.php @@ -468,6 +468,12 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { ]); $table->setPrimaryKey(['id']); $table->addIndex(['class'], 'job_class_index'); + } else { + $table = $schema->getTable('jobs'); + $table->changeColumn('execution_duration', [ + 'notnull' => true, + 'default' => 0, + ]); } if (!$schema->hasTable('users')) {