Can request account deletion
This commit is contained in:
@ -4,9 +4,11 @@ CREATE TABLE users (
|
||||
name VARCHAR(30) NOT NULL,
|
||||
email VARCHAR(255) NOT NULL,
|
||||
password VARCHAR NULL,
|
||||
reset_password_token VARCHAR(150) NULL,
|
||||
time_create BIGINT NOT NULL,
|
||||
reset_password_token VARCHAR(150) NULL,
|
||||
time_gen_reset_token BIGINT NOT NULL DEFAULT 0,
|
||||
delete_account_token VARCHAR(150) NULL,
|
||||
time_gen_delete_account_token BIGINT NOT NULL DEFAULT 0,
|
||||
time_activate BIGINT NOT NULL DEFAULT 0,
|
||||
active BOOLEAN NOT NULL DEFAULT TRUE,
|
||||
admin BOOLEAN NOT NULL DEFAULT FALSE
|
||||
|
Reference in New Issue
Block a user