invidious/config/sql/channels.sql

26 lines
520 B
MySQL
Raw Normal View History

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