2023-06-15 10:25:36 +00:00
|
|
|
-- Table: public.compilation_videos
|
|
|
|
|
|
|
|
-- DROP TABLE public.compilation_videos;
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS public.compilation_videos
|
|
|
|
(
|
|
|
|
title text,
|
|
|
|
id text,
|
|
|
|
author text,
|
|
|
|
ucid text,
|
|
|
|
length_seconds integer,
|
|
|
|
starting_timestamp_seconds integer,
|
|
|
|
ending_timestamp_seconds integer,
|
|
|
|
published timestamptz,
|
|
|
|
compid text references compilations(id),
|
|
|
|
index int8,
|
2023-07-17 03:22:22 +00:00
|
|
|
order_index integer,
|
2023-06-15 10:25:36 +00:00
|
|
|
PRIMARY KEY (index,compid)
|
|
|
|
);
|
|
|
|
|
|
|
|
GRANT ALL ON TABLE public.compilation_videos TO current_user;
|