From 478192fa3b2375a0ff0a5ff03956381e5da7a6ac Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 26 Feb 2009 13:22:41 -0800 Subject: add conversation id to notice --- db/laconica.sql | 2 ++ 1 file changed, 2 insertions(+) (limited to 'db/laconica.sql') diff --git a/db/laconica.sql b/db/laconica.sql index 012270b51..254cf5fab 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -114,8 +114,10 @@ create table notice ( reply_to integer comment 'notice replied to (usually a guess)' references notice (id), is_local tinyint default 0 comment 'notice was generated by a user', source varchar(32) comment 'source of comment, like "web", "im", or "clientname"', + conversation integer comment 'id of root notice in this conversation' references notice (id), index notice_profile_id_idx (profile_id), + index notice_conversation_idx (conversation), index notice_created_idx (created), FULLTEXT(content) ) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_bin; -- cgit v1.2.3-54-g00ecf