blob: 36eb14dea14fe87633daf385c859ba5892cd7811 (
plain) (
blame)
1
2
3
4
5
6
|
create table user_verification_token(
id integer primary key autoincrement,
user_id bigint unique references users(id),
token text,
valid_until timestamp with time zone
);
|