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
MySQL
Raw Permalink Normal View History

2020-07-16 23:55:59 -05:00
create table users (
email text primary key,
password text not null,
token text,
token_expires timestamp,
pw_token text,
pw_token_expires timestamp,
2021-06-21 19:37:35 -05:00
verified boolean not null default 0,
2020-07-16 23:55:59 -05:00
created timestamp not null default current_timestamp,
updated timestamp
);