You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-- 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;
|