1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-01-26 16:42:02 +05:30
2021-01-17 14:20:34 +00:00

13 lines
255 B
SQL

-- Table: public.annotations
-- DROP TABLE public.annotations;
CREATE TABLE IF NOT EXISTS public.annotations
(
id text NOT NULL,
annotations xml,
CONSTRAINT annotations_id_key UNIQUE (id)
);
GRANT ALL ON TABLE public.annotations TO current_user;