From 800d5151b65a78915c3e818ddf340e6788493710 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Wed, 24 Feb 2021 14:00:37 +0100 Subject: [PATCH] removed distance & kcal col from training_data --- init.sql | 2 -- 1 file changed, 2 deletions(-) diff --git a/init.sql b/init.sql index 851ddae..4b966f0 100644 --- a/init.sql +++ b/init.sql @@ -18,8 +18,6 @@ create table if not exists training_data( lon float not null, speed 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 ); create index if not exists idx_training_data_training_id on training_data(training_id); \ No newline at end of file