feat: add ability of user to manage old tokens
This commit is contained in:
@@ -11,17 +11,17 @@ create table if not exists users (
|
||||
username varchar (120) not null,
|
||||
email varchar (120) not null,
|
||||
salt char (8) not null,
|
||||
password char (60) not null,
|
||||
password char (60) not null,
|
||||
created_on timestamp default current_timestamp,
|
||||
updated_at timestamp default current_timestamp,
|
||||
lastlogin_at timestamp default current_timestamp
|
||||
);
|
||||
|
||||
|
||||
--drop table if exists tokens;
|
||||
create table if not exists tokens (
|
||||
token varchar (120) primary key,
|
||||
user_id uuid references users (id) on delete cascade,
|
||||
time_to_live integer default 86400,
|
||||
name text default '',
|
||||
emit_day timestamp default current_timestamp
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user