diff options
author | Dave Arter <davea@mysociety.org> | 2017-07-24 09:59:06 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2017-08-17 13:21:31 +0100 |
commit | fb03c300258b5d1dc419d7d08ecb3afa12a2fa5b (patch) | |
tree | c110c92155be4cfeadd91d1d663df0684c341929 /db/schema.sql | |
parent | 653d8b84d6a14f1759950e774b9b1a8bbba5f1b1 (diff) |
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.
Diffstat (limited to 'db/schema.sql')
-rw-r--r-- | db/schema.sql | 8 |
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 +); |