mirror of
https://github.com/iv-org/invidious.git
synced 2025-11-21 17:05:31 +00:00
Update setup instructions
This commit is contained in:
14
videos.sql
14
videos.sql
@@ -1,6 +1,6 @@
|
||||
-- Table: public.videos
|
||||
|
||||
-- DROP TABLE public.videos;
|
||||
DROP TABLE videos;
|
||||
|
||||
CREATE TABLE public.videos
|
||||
(
|
||||
@@ -8,6 +8,11 @@ CREATE TABLE public.videos
|
||||
info text COLLATE pg_catalog."default",
|
||||
html 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,
|
||||
CONSTRAINT videos_pkey PRIMARY KEY (id)
|
||||
)
|
||||
WITH (
|
||||
@@ -15,17 +20,10 @@ WITH (
|
||||
)
|
||||
TABLESPACE pg_default;
|
||||
|
||||
ALTER TABLE public.videos
|
||||
OWNER to omar;
|
||||
|
||||
GRANT ALL ON TABLE public.videos TO kemal;
|
||||
|
||||
GRANT ALL ON TABLE public.videos TO omar;
|
||||
|
||||
-- Index: id_idx
|
||||
|
||||
-- DROP INDEX public.id_idx;
|
||||
|
||||
CREATE UNIQUE INDEX id_idx
|
||||
ON public.videos USING btree
|
||||
(id COLLATE pg_catalog."default")
|
||||
|
||||
Reference in New Issue
Block a user