invidious/config/sql/channel_videos.sql

21 行
524 B
MySQL
Raw 通常表示 履歴

-- Table: public.channel_videos
-- DROP TABLE public.channel_videos;
CREATE TABLE public.channel_videos
(
id text COLLATE pg_catalog."default" NOT NULL,
title text COLLATE pg_catalog."default",
published timestamp with time zone,
updated timestamp with time zone,
ucid text COLLATE pg_catalog."default",
author text COLLATE pg_catalog."default",
CONSTRAINT channel_videos_id_key UNIQUE (id)
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
GRANT ALL ON TABLE public.channel_videos TO kemal;