invidious/config/sql/channel_videos.sql

30 lines
647 B
MySQL
Raw Normal View History

-- Table: public.channel_videos
-- DROP TABLE public.channel_videos;
CREATE TABLE public.channel_videos
(
2018-11-02 15:46:45 +01:00
id text NOT NULL,
title text,
published timestamp with time zone,
updated timestamp with time zone,
ucid text,
author text,
length_seconds integer,
live_now boolean,
premiere_timestamp timestamp with time zone,
2018-11-02 15:46:45 +01:00
CONSTRAINT channel_videos_id_key UNIQUE (id)
);
GRANT ALL ON TABLE public.channel_videos TO kemal;
2018-03-30 04:41:05 +02:00
2018-11-02 15:46:45 +01:00
-- Index: public.channel_videos_ucid_idx
2018-07-28 00:38:47 +02:00
-- DROP INDEX public.channel_videos_ucid_idx;
CREATE INDEX channel_videos_ucid_idx
2018-11-02 15:46:45 +01:00
ON public.channel_videos
USING btree
2018-11-02 15:46:45 +01:00
(ucid COLLATE pg_catalog."default");