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