invidious-mod/config/sql/playlists.sql

30 行
491 B
MySQL
Raw 通常表示 履歴

2020-04-15 08:08:58 +09:00
-- Type: public.privacy
-- DROP TYPE public.privacy;
CREATE TYPE public.privacy AS ENUM
(
'Public',
'Unlisted',
'Private'
);
2019-08-06 08:49:13 +09:00
-- Table: public.playlists
-- DROP TABLE public.playlists;
2021-10-13 11:31:06 +09:00
CREATE TABLE IF NOT EXISTS public.playlists
2019-08-06 08:49:13 +09:00
(
title text,
id text primary key,
author text,
description text,
video_count integer,
created timestamptz,
updated timestamptz,
privacy privacy,
index int8[]
);
2021-10-13 11:31:06 +09:00
GRANT ALL ON public.playlists TO current_user;