forked from midou/invidious
Add channel sql
This commit is contained in:
parent
253ea8113b
commit
908543dd62
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
|
||||
|
||||
-- DROP TABLE public.videos;
|
||||
|
||||
CREATE TABLE public.videos
|
||||
(
|
||||
id text COLLATE pg_catalog."default" NOT NULL,
|
||||
@ -24,6 +26,8 @@ GRANT ALL ON TABLE public.videos TO kemal;
|
||||
|
||||
-- Index: id_idx
|
||||
|
||||
-- DROP INDEX public.id_idx;
|
||||
|
||||
CREATE UNIQUE INDEX id_idx
|
||||
ON public.videos USING btree
|
||||
(id COLLATE pg_catalog."default")
|
Loading…
Reference in New Issue
Block a user