flatten conversation hierarchy to one level on import but preserve all thread info

in case somebody wants to write a plugin to display as multi-level thread
This commit is contained in:
Friendika 2010-12-04 23:16:16 -08:00
parent 4507a571d3
commit e9a1abd133
4 changed files with 25 additions and 6 deletions

View file

@ -180,6 +180,9 @@ function update_1018() {
function update_1019() {
q("ALTER TABLE `mail` DROP `delivered`");
q("ALTER TABLE `profile` ADD `showwith` TINYINT(1) NOT NULL DEFAULT '0' AFTER `marital` ");
}
function update_1020() {
q("ALTER TABLE `profile` DROP `showwith`");
q("ALTER TABLE `item` ADD `thr-parent` CHAR( 255 ) NOT NULL AFTER `parent-uri` ");
}