Files
dockerserver/invidious/config/sql/annotations.sql
2024-03-29 12:55:18 -05: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;