aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.sql
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2018-03-29 11:45:37 +0100
committerDave Arter <davea@mysociety.org>2018-03-29 16:04:33 +0100
commit90cf72fd66099bde47557c4eadf10856b8afffb2 (patch)
tree0e4016d8691ea6dd382d3ac9962b048ddee623b3 /db/schema.sql
parent9e806177d239f20ce3b11bf220800b0623ebc075 (diff)
add convert_latlong option to body table
For controlling if reports pulled in via Open311 should have the position converted from Easting/Northing to lat/long.
Diffstat (limited to 'db/schema.sql')
-rw-r--r--db/schema.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql
index 7d4b90d3d..d08ea675d 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -56,6 +56,7 @@ create table body (
send_extended_statuses boolean not null default 'f',
fetch_problems boolean not null default 'f',
blank_updates_permitted boolean not null default 'f',
+ convert_latlong boolean not null default 'f',
deleted boolean not null default 'f'
);