Remove stddev and direction columns

This commit is contained in:
Joscha 2023-10-21 18:20:37 +02:00
parent 0d48e0791b
commit 2bf939186d
10 changed files with 32 additions and 116 deletions

View file

@ -81,18 +81,14 @@ async fn save_work(
id, \
metric, \
value, \
stddev, \
unit, \
direction \
unit \
) \
VALUES (?, ?, ?, ?, ?, ?) \
VALUES (?, ?, ?, ?) \
",
run.id,
metric,
measurement.value,
measurement.stddev,
measurement.unit,
measurement.direction,
)
.execute(&mut *conn)
.await?;