From fb03c300258b5d1dc419d7d08ecb3afa12a2fa5b Mon Sep 17 00:00:00 2001 From: Dave Arter Date: Mon, 24 Jul 2017 09:59:06 +0100 Subject: Add site-wide extra fields for reports, and admin UI to manage - Also provides an editor for the extra Open311 fields on contacts. - Adds .btn--small class for small buttons Fixes #1743. --- db/schema_0053-add-report-extra-fields-table.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 db/schema_0053-add-report-extra-fields-table.sql (limited to 'db/schema_0053-add-report-extra-fields-table.sql') 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; -- cgit v1.2.3