mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
12 lines
255 B
SQL
12 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;
|