diff options
author | Struan Donald <struan@exo.org.uk> | 2012-08-31 16:40:04 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-08-31 16:40:04 +0100 |
commit | be97fe44d9954ce3c84d98030f2ebc6ae84a5a61 (patch) | |
tree | dc0de2a346624775331a4d3e22aa97a54d1019a8 /db/schema.sql | |
parent | 8e1336875a074adb7f906651233931e0ea4c22b7 (diff) |
initial work to handle changed problem states
Diffstat (limited to 'db/schema.sql')
-rw-r--r-- | db/schema.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/schema.sql b/db/schema.sql index 832104991..60ad8eda4 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -180,6 +180,10 @@ create table problem ( or state = 'fixed - user' or state = 'hidden' or state = 'partial' + or state = 'action scheduled' + or state = 'unable to fix' + or state = 'not councils responsibility' + or state = 'duplicate' ), lang text not null default 'en-gb', service text not null default '', @@ -312,6 +316,10 @@ create table comment ( or problem_state = 'fixed' or problem_state = 'fixed - council' or problem_state = 'fixed - user' + or problem_state = 'action scheduled' + or problem_state = 'unable to fix' + or problem_state = 'not councils responsibility' + or problem_state = 'duplicate' ), -- other fields? one to indicate whether this was written by the council -- and should be highlighted in the display? |