remove duplicate col in training_data table

This commit is contained in:
Riccardo Berto 2021-02-24 11:05:49 +01:00
parent ecd763dad2
commit a123a02ff0

View File

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