aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.sql
diff options
context:
space:
mode:
authormatthew <matthew>2006-10-10 20:45:08 +0000
committermatthew <matthew>2006-10-10 20:45:08 +0000
commite034d350336e0ee9ffb735d78eeae5b9507ced45 (patch)
tree025ca806d64ed08467da39afc5b190aa1f82cb85 /db/schema.sql
parent79fe3c3ee53d4a65f13d6094cfc9de03280eb84b (diff)
Allow fixing of problems via updates, and reopening too.
Diffstat (limited to 'db/schema.sql')
-rw-r--r--db/schema.sql6
1 files changed, 4 insertions, 2 deletions
diff --git a/db/schema.sql b/db/schema.sql
index b5ce0350d..4b6643b6f 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -4,7 +4,7 @@
-- Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved.
-- Email: matthew@mysociety.org; WWW: http://www.mysociety.org/
--
--- $Id: schema.sql,v 1.11 2006-10-10 15:53:04 matthew Exp $
+-- $Id: schema.sql,v 1.12 2006-10-10 20:45:08 matthew Exp $
--
-- secret
@@ -198,7 +198,9 @@ create table comment (
state = 'unconfirmed'
or state = 'confirmed'
or state = 'hidden'
- )
+ ),
+ mark_fixed boolean not null,
+ mark_open boolean not null
-- other fields? one to indicate whether this was written by the council
-- and should be highlighted in the display?
);