summaryrefslogtreecommitdiffstats
path: root/config/sql/annotations.sql
blob: 4ea077e79db12fe2259461c2d0ce5648ed9a0a98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-- 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;