2023-06-15 05:53:02 +00:00
|
|
|
-- Table: public.compilations
|
2023-06-07 09:01:59 +00:00
|
|
|
|
2023-06-15 05:53:02 +00:00
|
|
|
-- DROP TABLE public.compilations;
|
2023-06-07 09:01:59 +00:00
|
|
|
|
2023-06-15 05:53:02 +00:00
|
|
|
CREATE TABLE IF NOT EXISTS public.compilations
|
2023-06-07 09:01:59 +00:00
|
|
|
(
|
|
|
|
title text,
|
|
|
|
id text primary key,
|
|
|
|
author text,
|
|
|
|
description text,
|
|
|
|
video_count integer,
|
|
|
|
created timestamptz,
|
|
|
|
updated timestamptz,
|
|
|
|
privacy privacy,
|
|
|
|
index int8[]
|
|
|
|
);
|
|
|
|
|
|
|
|
GRANT ALL ON public.playlists TO current_user;
|