summaryrefslogtreecommitdiffstats
path: root/config/sql
diff options
context:
space:
mode:
Diffstat (limited to 'config/sql')
-rw-r--r--config/sql/annotations.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/config/sql/annotations.sql b/config/sql/annotations.sql
new file mode 100644
index 00000000..4ea077e7
--- /dev/null
+++ b/config/sql/annotations.sql
@@ -0,0 +1,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;