From 6c103d512c47b22de160bc95487f7ba717d3fe94 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Wed, 24 Feb 2021 13:52:35 +0100 Subject: [PATCH] elevation col instead of altitude --- init.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sql b/init.sql index 0a7c0fe..851ddae 100644 --- a/init.sql +++ b/init.sql @@ -17,7 +17,7 @@ create table if not exists training_data( lat float not null, lon float not null, speed float not null, - altitude float not null, + elevation float not null, distance float not null, kcal int not null, constraint fk_training_id foreign key(training_id) references training(id) on delete cascade