diff options
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 ); |