invidious-mod-JP/config/sql/annotations.sql
テクニカル諏訪子 499bd8edb5 invidiousアプデ
2021-10-13 11:31:06 +09: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;