Initialize database structure
This commit is contained in:
15
geneit_backend/src/schema.rs
Normal file
15
geneit_backend/src/schema.rs
Normal 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,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user