Beginning implementation of the planned API endpoints.

This commit is contained in:
2019-02-19 02:50:07 -06:00
parent a16ef81077
commit e3450d5f8f
6 changed files with 130 additions and 31 deletions

View File

@ -4,7 +4,7 @@ create extension if not exists "uuid-ossp";
create table "users" (
id uuid default uuid_generate_v4() primary key,
display_name varchar not null,
email varchar not null,
email varchar not null unique,
hashed_pwd varchar not null
);