GeneIT/geneit_backend/src/schema.rs

16 lines
367 B
Rust
Raw Normal View History

2023-05-24 11:52:24 +00:00
// @generated automatically by Diesel CLI.
diesel::table! {
users (id) {
id -> Int4,
email -> Varchar,
password -> Nullable<Varchar>,
reset_password_token -> Nullable<Varchar>,
time_create -> Int8,
time_gen_reset_token -> Int8,
time_activate -> Int8,
active -> Bool,
admin -> Bool,
}
}