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.
dotplan-online/schema.sql

12 lines
279 B
SQL

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 0,
created timestamp not null default current_timestamp,
updated timestamp
);