invidious-mod/config/sql/annotations.sql

13 行
255 B
MySQL
Raw 通常表示 履歴

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