From 6a19ae637b8b79a21e5ed4a30861b3b6d31070f1 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Tue, 23 Feb 2021 16:49:24 +0100 Subject: [PATCH] training table --- init.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/init.sql b/init.sql index e69de29..ca61f6a 100644 --- a/init.sql +++ b/init.sql @@ -0,0 +1,12 @@ +create table if not exists training( + id integer primary key, + medium varchar(255) not null, + uuid uuid not null, + t timestamp with time zone not null, + lat float not null, + lon float not null, + speed float not null, + altitude float not null, + distance float not null, + kcal int not null +); \ No newline at end of file