From: Sarven Capadisli Date: Sun, 19 Apr 2009 23:40:26 +0000 (+0000) Subject: Merge branch '0.7.x' into 0.8.x X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8d4738d9566e6d7e68793063b3d72e4a3693fafe;p=quix0rs-gnu-social.git Merge branch '0.7.x' into 0.8.x --- 8d4738d9566e6d7e68793063b3d72e4a3693fafe diff --cc db/laconica.sql index 20f0cabd17,5b57494d98..83d610f0d3 --- a/db/laconica.sql +++ b/db/laconica.sql @@@ -114,11 -114,10 +114,12 @@@ 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), + index notice_replyto_idx (reply_to), FULLTEXT(content) ) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;