mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-03 03:56:22 -04:00
Add support for custom playlists
This commit is contained in:
parent
1e34a61911
commit
be055d9dcb
40 changed files with 1802 additions and 245 deletions
18
config/sql/playlists.sql
Normal file
18
config/sql/playlists.sql
Normal file
|
@ -0,0 +1,18 @@
|
|||
-- Table: public.playlists
|
||||
|
||||
-- DROP TABLE public.playlists;
|
||||
|
||||
CREATE TABLE public.playlists
|
||||
(
|
||||
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 kemal;
|
Loading…
Add table
Add a link
Reference in a new issue