mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
13 lines
234 B
MySQL
13 lines
234 B
MySQL
|
-- Table: public.annotations
|
||
|
|
||
|
-- DROP TABLE public.annotations;
|
||
|
|
||
|
CREATE TABLE public.annotations
|
||
|
(
|
||
|
id text NOT NULL,
|
||
|
annotations xml,
|
||
|
CONSTRAINT annotations_id_key UNIQUE (id)
|
||
|
);
|
||
|
|
||
|
GRANT ALL ON TABLE public.annotations TO kemal;
|