2019-04-15 18:13:09 +02:00
|
|
|
-- Table: public.annotations
|
|
|
|
|
|
|
|
-- DROP TABLE public.annotations;
|
|
|
|
|
2021-01-17 02:44:31 +01:00
|
|
|
CREATE TABLE IF NOT EXISTS public.annotations
|
2019-04-15 18:13:09 +02:00
|
|
|
(
|
|
|
|
id text NOT NULL,
|
|
|
|
annotations xml,
|
|
|
|
CONSTRAINT annotations_id_key UNIQUE (id)
|
|
|
|
);
|
|
|
|
|
2021-01-17 02:44:31 +01:00
|
|
|
GRANT ALL ON TABLE public.annotations TO current_user;
|