GeneIT/geneit_backend/src/schema.rs

19 lines
490 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,
2023-05-24 12:38:18 +00:00
name -> Varchar,
2023-05-24 11:52:24 +00:00
email -> Varchar,
password -> Nullable<Varchar>,
time_create -> Int8,
2023-06-06 07:47:52 +00:00
reset_password_token -> Nullable<Varchar>,
2023-05-24 11:52:24 +00:00
time_gen_reset_token -> Int8,
2023-06-06 07:47:52 +00:00
delete_account_token -> Nullable<Varchar>,
time_gen_delete_account_token -> Int8,
2023-05-24 11:52:24 +00:00
time_activate -> Int8,
active -> Bool,
admin -> Bool,
}
}