diff options
author | Struan Donald <struan@exo.org.uk> | 2012-01-10 17:15:24 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-01-10 17:15:24 +0000 |
commit | 6228cc7aa55defdb694d2de05d2a2be282955fe6 (patch) | |
tree | 1392fb78e01bd6ab28108de42ccd5f8097340dc8 /db/schema.sql | |
parent | 22c0a7367193e947af70ab1bbdfb3268fd1ec3c6 (diff) | |
parent | 1955a60586ecd4d6dc7d72de31d01d28230fbb8b (diff) |
Merge remote branch 'origin/master' into reportemptyhomes
Diffstat (limited to 'db/schema.sql')
-rw-r--r-- | db/schema.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.sql b/db/schema.sql index fcd137919..395d1c07b 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -188,7 +188,8 @@ create table problem ( whensent timestamp, send_questionnaire boolean not null default 't', extra text, -- extra fields required for open311 - flagged boolean not null default 'f' + flagged boolean not null default 'f', + geocode bytea ); create index problem_state_latitude_longitude_idx on problem(state, latitude, longitude); create index problem_user_id_idx on problem ( user_id ); |