mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Add channel sql
This commit is contained in:
parent
253ea8113b
commit
908543dd62
3 changed files with 32 additions and 1 deletions
26
config/sql/channels.sql
Normal file
26
config/sql/channels.sql
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
-- Table: public.channels
|
||||||
|
|
||||||
|
-- DROP TABLE public.channels;
|
||||||
|
|
||||||
|
CREATE TABLE public.channels
|
||||||
|
(
|
||||||
|
id text COLLATE pg_catalog."default" NOT NULL,
|
||||||
|
rss text COLLATE pg_catalog."default",
|
||||||
|
updated timestamp with time zone,
|
||||||
|
author text COLLATE pg_catalog."default"
|
||||||
|
)
|
||||||
|
WITH (
|
||||||
|
OIDS = FALSE
|
||||||
|
)
|
||||||
|
TABLESPACE pg_default;
|
||||||
|
|
||||||
|
GRANT ALL ON TABLE public.channels TO kemal;
|
||||||
|
|
||||||
|
-- Index: channel_id_idx
|
||||||
|
|
||||||
|
-- DROP INDEX public.channel_id_idx;
|
||||||
|
|
||||||
|
CREATE UNIQUE INDEX channel_id_idx
|
||||||
|
ON public.channels USING btree
|
||||||
|
(id COLLATE pg_catalog."default")
|
||||||
|
TABLESPACE pg_default;
|
|
@ -1,5 +1,7 @@
|
||||||
-- Table: public.videos
|
-- Table: public.videos
|
||||||
|
|
||||||
|
-- DROP TABLE public.videos;
|
||||||
|
|
||||||
CREATE TABLE public.videos
|
CREATE TABLE public.videos
|
||||||
(
|
(
|
||||||
id text COLLATE pg_catalog."default" NOT NULL,
|
id text COLLATE pg_catalog."default" NOT NULL,
|
||||||
|
@ -24,6 +26,8 @@ GRANT ALL ON TABLE public.videos TO kemal;
|
||||||
|
|
||||||
-- Index: id_idx
|
-- Index: id_idx
|
||||||
|
|
||||||
|
-- DROP INDEX public.id_idx;
|
||||||
|
|
||||||
CREATE UNIQUE INDEX id_idx
|
CREATE UNIQUE INDEX id_idx
|
||||||
ON public.videos USING btree
|
ON public.videos USING btree
|
||||||
(id COLLATE pg_catalog."default")
|
(id COLLATE pg_catalog."default")
|
3
setup.sh
3
setup.sh
|
@ -2,4 +2,5 @@
|
||||||
|
|
||||||
createdb invidious
|
createdb invidious
|
||||||
createuser kemal
|
createuser kemal
|
||||||
psql invidious < videos.sql
|
psql invidious < config/sql/channels.sql
|
||||||
|
psql invidious < config/sql/videos.sql
|
||||||
|
|
Loading…
Reference in a new issue