Fix typo in users.sql

This commit is contained in:
Omar Roth 2018-07-18 20:07:24 -05:00
parent 61e3c39ecd
commit c928a938f9
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ CREATE TABLE public.users
notifications text[] COLLATE pg_catalog."default",
subscriptions text[] COLLATE pg_catalog."default",
email text COLLATE pg_catalog."default" NOT NULL,
preferences text COLLAGE pg_catalog."default",
preferences text COLLATE pg_catalog."default",
CONSTRAINT users_email_key UNIQUE (email),
CONSTRAINT users_id_key UNIQUE (id)
)