Update users.sql

This commit is contained in:
Omar Roth 2018-07-20 18:41:23 -05:00
parent 44effdd3a6
commit 99ff27dae3
1 changed files with 1 additions and 0 deletions

View File

@ -11,6 +11,7 @@ CREATE TABLE public.users
email text COLLATE pg_catalog."default" NOT NULL,
preferences text COLLATE pg_catalog."default",
password text COLLATE pg_catalog."default",
token text COLLATE pg_catalog."default",
CONSTRAINT users_email_key UNIQUE (email),
CONSTRAINT users_id_key UNIQUE (id)
)