mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-29 19:54:46 +01:00
9 lines
245 B
MySQL
9 lines
245 B
MySQL
|
alter table users add verified_at timestamp with time zone default null;
|
||
|
|
||
|
create table user_verification_token(
|
||
|
id bigserial primary key,
|
||
|
user_id bigint unique references users(id),
|
||
|
token text,
|
||
|
valid_until timestamp with time zone
|
||
|
);
|