From: Sarven Capadisli Date: Thu, 2 Apr 2009 06:44:54 +0000 (+0000) Subject: Merge branch '0.7.x' into 0.8.x X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=798984381f9ee40681d1feb4a7bef72460fe39f2;p=quix0rs-gnu-social.git Merge branch '0.7.x' into 0.8.x --- 798984381f9ee40681d1feb4a7bef72460fe39f2 diff --cc db/laconica.sql index 0d66716053,a790a3fd27..20f0cabd17 --- a/db/laconica.sql +++ b/db/laconica.sql @@@ -115,13 -114,11 +114,13 @@@ 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; + ) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci; create table notice_source ( code varchar(32) primary key not null comment 'source code',