mi/src/schema.rs

23 lines
355 B
Rust
Raw Normal View History

2020-09-13 16:07:06 +00:00
table! {
members (id) {
id -> Nullable<Integer>,
cmene -> Text,
picurl -> Text,
}
}
table! {
switches (id) {
id -> Text,
who -> Text,
started_at -> Text,
ended_at -> Nullable<Text>,
duration -> Text,
}
}
allow_tables_to_appear_in_same_query!(
members,
switches,
);