elevation col instead of altitude

This commit is contained in:
Riccardo Berto 2021-02-24 13:52:35 +01:00
parent d6c3e6b738
commit 6c103d512c

@ -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