Add watch history

This commit is contained in:
Omar Roth 2018-07-28 20:40:59 -05:00
commit b5c92c1a2f
4 changed files with 101 additions and 18 deletions

View file

@ -12,6 +12,7 @@ CREATE TABLE public.users
preferences text COLLATE pg_catalog."default",
password text COLLATE pg_catalog."default",
token text COLLATE pg_catalog."default",
watched text[] COLLATE pg_catalog."default",
CONSTRAINT users_email_key UNIQUE (email),
CONSTRAINT users_id_key UNIQUE (id)
)