changeset 37:edf081d0b282

Need to retain the mime-type of messages.
author David A. Holland
date Sun, 15 Jun 2014 17:13:50 -0400
parents baf976e34f16
children 68a4f2d8930e
files database/schema/messages.sql
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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