datalogger/src/schema.rs

9 lines
139 B
Rust

table! {
events (id) {
id -> Integer,
devicename -> Text,
value -> Integer,
timestamp -> Text,
}
}