invidious/config/sql/channels.sql

26 lines
520 B
MySQL
Raw Normal View History

2018-03-25 03:44:17 +00:00
-- Table: public.channels
-- DROP TABLE public.channels;
2021-01-17 01:44:31 +00:00
CREATE TABLE IF NOT EXISTS public.channels
2018-03-25 03:44:17 +00:00
(
2018-11-02 14:46:45 +00:00
id text NOT NULL,
author text,
updated timestamp with time zone,
2019-02-09 16:18:24 +00:00
deleted boolean,
2019-03-04 02:40:24 +00:00
subscribed timestamp with time zone,
2018-11-02 14:46:45 +00:00
CONSTRAINT channels_id_key UNIQUE (id)
);
2018-03-25 03:44:17 +00:00
2021-01-17 01:44:31 +00:00
GRANT ALL ON TABLE public.channels TO current_user;
2018-03-30 02:41:05 +00:00
2018-11-02 14:46:45 +00:00
-- Index: public.channels_id_idx
2018-03-30 02:41:05 +00:00
-- DROP INDEX public.channels_id_idx;
2021-01-17 01:44:31 +00:00
CREATE INDEX IF NOT EXISTS channels_id_idx
2018-11-02 14:46:45 +00:00
ON public.channels
USING btree
(id COLLATE pg_catalog."default");