From d292b0342e0446b052a44ad0b6a2d6ec8eba20ea Mon Sep 17 00:00:00 2001 From: Axel <1597611+axeloz@users.noreply.github.com> Date: Tue, 28 Dec 2021 10:47:54 +0100 Subject: [PATCH] Latest db schema --- database/schema/mysql-schema.dump | 1 + 1 file changed, 1 insertion(+) diff --git a/database/schema/mysql-schema.dump b/database/schema/mysql-schema.dump index a6c6555..d78bfb6 100644 --- a/database/schema/mysql-schema.dump +++ b/database/schema/mysql-schema.dump @@ -73,6 +73,7 @@ CREATE TABLE `task_history` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `status` int unsigned NOT NULL, `output` text CHARACTER SET utf8 COLLATE utf8_general_ci, + `duration` float(5,3) unsigned DEFAULT NULL, `task_id` int unsigned NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL DEFAULT '1970-01-01 00:00:01',