1
0
mirror of https://gitea.invidious.io/iv-org/invidious synced 2025-03-22 10:00:04 +01:00

13 lines
234 B
MySQL
Raw Normal View History

-- 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;