blob: 3705829d7528977348940785d4643d7e135d1998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-- 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;
|