1
0
mirror of https://github.com/iv-org/invidious.git synced 2025-01-18 04:32:53 +05:30

13 lines
255 B
MySQL
Raw Normal View History

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