From 5fda7c0aff770f87304b12cbcde044edd0b255fd Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 30 Dec 2017 15:44:09 -0600 Subject: [PATCH] Update postgres script --- invidious.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/invidious.sql b/invidious.sql index 61ad3d2f..fb8c687f 100644 --- a/invidious.sql +++ b/invidious.sql @@ -12,6 +12,7 @@ CREATE TABLE public.videos likes integer, dislikes integer, rating double precision, + description text COLLATE pg_catalog."default", CONSTRAINT videos_pkey PRIMARY KEY (video_id) ) WITH ( @@ -33,4 +34,4 @@ GRANT ALL ON TABLE public.videos TO omar; CREATE INDEX videos_video_id_idx ON public.videos USING btree (video_id COLLATE pg_catalog."default") - TABLESPACE pg_default; + TABLESPACE pg_default; \ No newline at end of file