aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-03-23 14:58:43 +0000
committerStruan Donald <struan@exo.org.uk>2012-03-23 14:58:43 +0000
commit380b68fac937381221b7a90055ee1b5d64ab96e6 (patch)
tree1dcc5ef9ea0ce226143096ad47fdd9a22fee9ffb /db
parentfe7ea6cdb3d8dd64d7d644870476b9cc33c9cf86 (diff)
forgot to add extra column into schema file
Diffstat (limited to 'db')
-rw-r--r--db/schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.sql b/db/schema.sql
index d9faa4aac..aa008ce02 100644
--- a/db/schema.sql
+++ b/db/schema.sql
@@ -311,7 +311,8 @@ create table comment (
),
-- other fields? one to indicate whether this was written by the council
-- and should be highlighted in the display?
- external_id text
+ external_id text,
+ extra text
);
create index comment_user_id_idx on comment(user_id);