summaryrefslogtreecommitdiffstats
path: root/invidious.sql
diff options
context:
space:
mode:
Diffstat (limited to 'invidious.sql')
-rw-r--r--invidious.sql37
1 files changed, 0 insertions, 37 deletions
diff --git a/invidious.sql b/invidious.sql
deleted file mode 100644
index fb8c687f..00000000
--- a/invidious.sql
+++ /dev/null
@@ -1,37 +0,0 @@
--- Table: public.videos
-
--- DROP TABLE public.videos;
-
-CREATE TABLE public.videos
-(
- last_updated timestamp with time zone,
- video_id text COLLATE pg_catalog."default" NOT NULL,
- video_info text COLLATE pg_catalog."default",
- video_html text COLLATE pg_catalog."default",
- views bigint,
- likes integer,
- dislikes integer,
- rating double precision,
- description text COLLATE pg_catalog."default",
- CONSTRAINT videos_pkey PRIMARY KEY (video_id)
-)
-WITH (
- OIDS = FALSE
-)
-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: videos_video_id_idx
-
--- DROP INDEX public.videos_video_id_idx;
-
-CREATE INDEX videos_video_id_idx
- ON public.videos USING btree
- (video_id COLLATE pg_catalog."default")
- TABLESPACE pg_default; \ No newline at end of file