From a123a02ff0a821163bd703ee3d51e0cbe6a82342 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Wed, 24 Feb 2021 11:05:49 +0100 Subject: [PATCH] remove duplicate col in training_data table --- init.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/init.sql b/init.sql index c4d4538..f185af9 100644 --- a/init.sql +++ b/init.sql @@ -15,7 +15,6 @@ create table if not exists training_data( altitude float not null, distance float not null, kcal int not null, - speed float 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