This repository has been archived on 2022-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
|
create table users (
|
|
email text primary key,
|
|
password text not null,
|
|
token text,
|
|
token_expires timestamp,
|
|
pw_token text,
|
|
pw_token_expires timestamp,
|
|
verified boolean not null default false,
|
|
created timestamp not null default current_timestamp,
|
|
updated timestamp
|
|
);
|