diff options
author | Struan Donald <struan@exo.org.uk> | 2011-08-16 10:43:43 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-08-16 10:43:43 +0100 |
commit | f93ff062c986847f97aef76673c2ca7742f1f125 (patch) | |
tree | a2edd1e19e8c6cfa062a04af31fb9533a86493b8 /db | |
parent | c104ae8c1d72eb25ba60686b58f01da148dc081f (diff) |
fix syntax errors
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.sql b/db/schema.sql index d7bbf1127..991470f92 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -180,7 +180,7 @@ create table problem ( lastupdate timestamp not null default ms_current_timestamp(), whensent timestamp, send_questionnaire boolean not null default 't', - extra text -- extra fields required for open311 + extra text, -- extra fields required for open311 flagged boolean not null default 'f' ); create index problem_state_latitude_longitude_idx on problem(state, latitude, longitude); |