thesis/project/schema.rs

9 lines
166 B
Rust
Raw Normal View History

2020-03-30 14:41:46 +03:00
table! {
users (id) {
id -> Integer,
username -> Varchar,
is_admin -> Nullable<Bool>,
password_hash -> Nullable<Varchar>,
}
}