Can request account deletion

This commit is contained in:
2023-06-06 09:47:52 +02:00
parent 1a8211c13d
commit 4b8baa2416
8 changed files with 83 additions and 5 deletions

View File

@ -6,9 +6,11 @@ diesel::table! {
name -> Varchar,
email -> Varchar,
password -> Nullable<Varchar>,
reset_password_token -> Nullable<Varchar>,
time_create -> Int8,
reset_password_token -> Nullable<Varchar>,
time_gen_reset_token -> Int8,
delete_account_token -> Nullable<Varchar>,
time_gen_delete_account_token -> Int8,
time_activate -> Int8,
active -> Bool,
admin -> Bool,