aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.sql')
-rw-r--r--db/schema.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql
index af6570b7a..ed930a13e 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -538,3 +538,11 @@ CREATE TABLE translation (
msgstr text not null,
unique(tbl, object_id, col, lang)
);
+
+CREATE TABLE report_extra_fields (
+ id serial not null primary key,
+ name text not null,
+ cobrand text,
+ language text,
+ extra text
+);