X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=131014d4a4424864b81f85abc19463c685066cb1;hb=9d9efb2bee623bc726943b75e9ddd58e520fce7e;hp=2ca008cdad33c26b3c8dd960c60501a4f9b0db66;hpb=147d7f3bbf6c785f2c1eb7cdcfaa0a47e0ee43d3;p=friendica.git diff --git a/update.php b/update.php index 2ca008cdad..131014d4a4 100644 --- a/update.php +++ b/update.php @@ -348,4 +348,29 @@ function update_1035() { q("ALTER TABLE `contact` ADD `success_update` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `last-update` "); -} \ No newline at end of file +} + +function update_1036() { + + $r = dbq("SELECT * FROM `contact` WHERE `network` = 'dfrn' && `photo` LIKE '%include/photo%' "); + if(count($r)) { + foreach($r as $rr) { + q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s' WHERE `id` = %d LIMIT 1", + dbesc(str_replace('include/photo','photo',$rr['photo'])), + dbesc(str_replace('include/photo','photo',$rr['thumb'])), + dbesc(str_replace('include/photo','photo',$rr['micro'])), + intval($rr['id'])); + } + } +} + +function update_1037() { + + q("ALTER TABLE `contact` CHANGE `lrdd` `alias` CHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL "); + +} + +function update_1038() { + q("ALTER TABLE `item` ADD `plink` CHAR( 255 ) NOT NULL AFTER `target` "); +} +