From 35f2794d5f25f24633a2e27538bcfb898529a701 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Wed, 24 Feb 2021 11:32:12 +0100 Subject: [PATCH] moving_time and stopped_time col --- init.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.sql b/init.sql index 9d12d47..692c9d7 100644 --- a/init.sql +++ b/init.sql @@ -4,6 +4,8 @@ create table if not exists training( filename text not null, medium varchar(255) not null, description text not null, + moving_time float not null, + stopped_time float not null, data jsonb not null default '{}' );