mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-06 05:24:28 -04:00
Add config option to cache annotations from IA
This commit is contained in:
parent
2deb436ccd
commit
3bcb98e644
5 changed files with 101 additions and 44 deletions
12
config/sql/annotations.sql
Normal file
12
config/sql/annotations.sql
Normal file
|
@ -0,0 +1,12 @@
|
|||
-- Table: public.annotations
|
||||
|
||||
-- DROP TABLE public.annotations;
|
||||
|
||||
CREATE TABLE public.annotations
|
||||
(
|
||||
id text NOT NULL,
|
||||
annotations xml,
|
||||
CONSTRAINT annotations_id_key UNIQUE (id)
|
||||
);
|
||||
|
||||
GRANT ALL ON TABLE public.annotations TO kemal;
|
Loading…
Add table
Add a link
Reference in a new issue