diff options
author | Struan Donald <struan@exo.org.uk> | 2018-03-01 12:31:48 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-03-15 14:49:00 +0000 |
commit | 8c23490f465fad0089d77ee362c566d066798d09 (patch) | |
tree | 91b6c9612f575b3ef68b742deb5f30b89351ce4b /db | |
parent | 7b790604611322af72ac851ce0935587152d052f (diff) |
permit blank updates to be fetched over Open311
Add a per body configuration option to allow Open311 updates to contain
only a status change, rather than emitting a warning when this happens.
Diffstat (limited to 'db')
-rw-r--r-- | db/downgrade_0058---0057.sql | 5 | ||||
-rw-r--r-- | db/schema.sql | 1 | ||||
-rw-r--r-- | db/schema_0058-blank-updates-permitted.sql | 5 |
3 files changed, 11 insertions, 0 deletions
diff --git a/db/downgrade_0058---0057.sql b/db/downgrade_0058---0057.sql new file mode 100644 index 000000000..1ce8f527c --- /dev/null +++ b/db/downgrade_0058---0057.sql @@ -0,0 +1,5 @@ +BEGIN; + +ALTER TABLE body DROP blank_updates_permitted; + +COMMIT; diff --git a/db/schema.sql b/db/schema.sql index 9d212e1da..739090480 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -55,6 +55,7 @@ create table body ( can_be_devolved boolean not null default 'f', send_extended_statuses boolean not null default 'f', fetch_problems boolean not null default 'f', + blank_updates_permitted boolean not null default 'f', deleted boolean not null default 'f' ); diff --git a/db/schema_0058-blank-updates-permitted.sql b/db/schema_0058-blank-updates-permitted.sql new file mode 100644 index 000000000..8b6710bc0 --- /dev/null +++ b/db/schema_0058-blank-updates-permitted.sql @@ -0,0 +1,5 @@ +BEGIN; + +ALTER TABLE body ADD blank_updates_permitted boolean default 'f' not null; + +COMMIT; |