Initialize database structure

This commit is contained in:
2023-05-24 13:52:24 +02:00
parent 6a265d9a72
commit df64d51445
12 changed files with 532 additions and 1 deletions

View File

@ -0,0 +1,15 @@
// @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,
}
}