2018-03-29 08:59:54 +05:30
|
|
|
-- Table: public.channel_videos
|
|
|
|
|
|
|
|
-- DROP TABLE public.channel_videos;
|
|
|
|
|
|
|
|
CREATE TABLE public.channel_videos
|
|
|
|
(
|
2018-11-02 20:16:45 +05:30
|
|
|
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 22:54:47 +05:30
|
|
|
live_now boolean,
|
|
|
|
premiere_timestamp timestamp with time zone,
|
2018-11-02 20:16:45 +05:30
|
|
|
CONSTRAINT channel_videos_id_key UNIQUE (id)
|
|
|
|
);
|
2018-03-29 08:59:54 +05:30
|
|
|
|
|
|
|
GRANT ALL ON TABLE public.channel_videos TO kemal;
|
2018-03-30 08:11:05 +05:30
|
|
|
|
2018-11-02 20:16:45 +05:30
|
|
|
-- Index: public.channel_videos_ucid_idx
|
2018-07-28 04:08:47 +05:30
|
|
|
|
|
|
|
-- DROP INDEX public.channel_videos_ucid_idx;
|
|
|
|
|
|
|
|
CREATE INDEX channel_videos_ucid_idx
|
2018-11-02 20:16:45 +05:30
|
|
|
ON public.channel_videos
|
2019-02-11 22:29:17 +05:30
|
|
|
USING btree
|
2018-11-02 20:16:45 +05:30
|
|
|
(ucid COLLATE pg_catalog."default");
|
|
|
|
|