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