app-store/apps/invidious/data/init/sql/annotations.sql

13 lines
255 B
MySQL
Raw Normal View History

2022-07-28 17:46:12 +00:00
-- 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;