2018-03-28 20:29:54 -07:00
|
|
|
-- Table: public.channel_videos
|
|
|
|
|
|
|
|
-- DROP TABLE public.channel_videos;
|
|
|
|
|
2021-01-16 17:44:31 -08:00
|
|
|
CREATE TABLE IF NOT EXISTS public.channel_videos
|
2018-03-28 20:29:54 -07:00
|
|
|
(
|
2018-11-02 07:46:45 -07:00
|
|
|
id text NOT NULL,
|
|
|
|
title text,
|
|
|
|
published timestamp with time zone,
|
|
|
|
updated timestamp with time zone,
|
|
|
|
ucid text,
|
|
|
|
author text,
|
|
|
|
length_seconds integer,
|
2019-03-22 10:24:47 -07:00
|
|
|
live_now boolean,
|
|
|
|
premiere_timestamp timestamp with time zone,
|
2019-05-30 13:09:39 -07:00
|
|
|
views bigint,
|
2018-11-02 07:46:45 -07:00
|
|
|
CONSTRAINT channel_videos_id_key UNIQUE (id)
|
|
|
|
);
|
2018-03-28 20:29:54 -07:00
|
|
|
|
2021-01-16 17:44:31 -08:00
|
|
|
GRANT ALL ON TABLE public.channel_videos TO current_user;
|
2018-03-29 19:41:05 -07:00
|
|
|
|
2018-11-02 07:46:45 -07:00
|
|
|
-- Index: public.channel_videos_ucid_idx
|
2018-07-27 15:38:47 -07:00
|
|
|
|
|
|
|
-- DROP INDEX public.channel_videos_ucid_idx;
|
|
|
|
|
2021-01-16 17:44:31 -08:00
|
|
|
CREATE INDEX IF NOT EXISTS channel_videos_ucid_idx
|
2018-11-02 07:46:45 -07:00
|
|
|
ON public.channel_videos
|
2019-02-11 08:59:17 -08:00
|
|
|
USING btree
|
2018-11-02 07:46:45 -07:00
|
|
|
(ucid COLLATE pg_catalog."default");
|
|
|
|
|