diff options
Diffstat (limited to 'db/schema_0053-add-report-extra-fields-table.sql')
-rw-r--r-- | db/schema_0053-add-report-extra-fields-table.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/db/schema_0053-add-report-extra-fields-table.sql b/db/schema_0053-add-report-extra-fields-table.sql new file mode 100644 index 000000000..be92abd47 --- /dev/null +++ b/db/schema_0053-add-report-extra-fields-table.sql @@ -0,0 +1,11 @@ +BEGIN; + +CREATE TABLE report_extra_fields ( + id serial not null primary key, + name text not null, + cobrand text, + language text, + extra text +); + +COMMIT; |