mirror of
https://github.com/iv-org/invidious.git
synced 2025-06-12 05:07:43 +02:00
Add channel sql
This commit is contained in:
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;
|
Reference in New Issue
Block a user