thesis/project/schema.rs
2020-03-30 14:41:46 +03:00

8 lines
166 B
Rust

table! {
users (id) {
id -> Integer,
username -> Varchar,
is_admin -> Nullable<Bool>,
password_hash -> Nullable<Varchar>,
}
}