# HG changeset patch
# User David A. Holland
# Date 1402866830 14400
# Node ID edf081d0b282d656b2b23ce2a81eb9591a536f9f
# Parent  baf976e34f16507d5d2f6068b4f6369e532f5c18
Need to retain the mime-type of messages.

diff -r baf976e34f16 -r edf081d0b282 database/schema/messages.sql
--- a/database/schema/messages.sql	Sun Jun 15 17:13:39 2014 -0400
+++ b/database/schema/messages.sql	Sun Jun 15 17:13:50 2014 -0400
@@ -21,6 +21,7 @@
 	who bigint		not null references users (id),
 	parent_id bigint	null references messages (id),
 	posttime timestamp	not null,
+	contenttype text	not null,
 	body text		not null,
 
 	-- we don't keep these directly, they go into an admin log entry