nomilo/src/schema.rs

22 lines
305 B
Rust
Raw Normal View History

2021-03-26 22:30:38 +00:00
table! {
localuser (user_id) {
user_id -> Text,
username -> Text,
password -> Text,
}
}
table! {
user (id) {
id -> Text,
role -> Text,
}
}
joinable!(localuser -> user (user_id));
allow_tables_to_appear_in_same_query!(
localuser,
user,
);