diff options
| author | Omar Roth <omarroth@hotmail.com> | 2018-11-02 09:46:45 -0500 |
|---|---|---|
| committer | Omar Roth <omarroth@hotmail.com> | 2018-11-02 09:46:45 -0500 |
| commit | 19632511d5ed1a38c32929d5dcb01edcd014e291 (patch) | |
| tree | a689a0559bcc8f54647024d3d64118ea6c0dbf99 /config/sql/videos.sql | |
| parent | d739ef8fd340149a0b1a2371ffd419c9723ce4f4 (diff) | |
| download | invidious-19632511d5ed1a38c32929d5dcb01edcd014e291.tar.gz invidious-19632511d5ed1a38c32929d5dcb01edcd014e291.tar.bz2 invidious-19632511d5ed1a38c32929d5dcb01edcd014e291.zip | |
Update SQL
Diffstat (limited to 'config/sql/videos.sql')
| -rw-r--r-- | config/sql/videos.sql | 57 |
1 files changed, 27 insertions, 30 deletions
diff --git a/config/sql/videos.sql b/config/sql/videos.sql index b94405e9..6ded01de 100644 --- a/config/sql/videos.sql +++ b/config/sql/videos.sql @@ -4,40 +4,37 @@ CREATE TABLE public.videos ( - id text COLLATE pg_catalog."default" NOT NULL, - info text COLLATE pg_catalog."default", - updated timestamp with time zone, - title text COLLATE pg_catalog."default", - views bigint, - likes integer, - dislikes integer, - wilson_score double precision, - published timestamp with time zone, - description text COLLATE pg_catalog."default", - language text COLLATE pg_catalog."default", - author text COLLATE pg_catalog."default", - ucid text COLLATE pg_catalog."default", - allowed_regions text[] COLLATE pg_catalog."default", - is_family_friendly boolean, - genre text COLLATE pg_catalog."default", - genre_url text COLLATE pg_catalog."default", - license text COLLATE pg_catalog."default", - sub_count_text text COLLATE pg_catalog."default", - author_thumbnail text COLLATE pg_catalog."default", - CONSTRAINT videos_pkey PRIMARY KEY (id) -) -WITH ( - OIDS = FALSE -) -TABLESPACE pg_default; + id text NOT NULL, + info text, + updated timestamp with time zone, + title text, + views bigint, + likes integer, + dislikes integer, + wilson_score double precision, + published timestamp with time zone, + description text, + language text, + author text, + ucid text, + allowed_regions text[], + is_family_friendly boolean, + genre text, + genre_url text, + license text, + sub_count_text text, + author_thumbnail text, + CONSTRAINT videos_pkey PRIMARY KEY (id) +); GRANT ALL ON TABLE public.videos TO kemal; --- Index: id_idx +-- Index: public.id_idx -- DROP INDEX public.id_idx; CREATE UNIQUE INDEX id_idx - ON public.videos USING btree - (id COLLATE pg_catalog."default") - TABLESPACE pg_default;
\ No newline at end of file + ON public.videos + USING btree + (id COLLATE pg_catalog."default"); + |
