From 4943a2a3c007d7501a01f61348f48d91cfa369d7 Mon Sep 17 00:00:00 2001 From: Riccardo Berto Date: Wed, 24 Feb 2021 10:30:31 +0100 Subject: [PATCH] speed col on training_data table --- init.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/init.sql b/init.sql index 6149074..ea22502 100644 --- a/init.sql +++ b/init.sql @@ -14,6 +14,7 @@ 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