X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=3132677ea7f5e8a7383064e51092db1a6b0573e5;hb=01b81f7bba51f2eb6ad2faa1a1dfccf51e64845e;hp=40a3e8ff0d22ee39328b8eddcd39621144af1e00;hpb=9ed3f3d6d0c8e2b4e5e97d7272280cfa87fe8e9a;p=friendica.git diff --git a/update.php b/update.php index 40a3e8ff0d..3132677ea7 100644 --- a/update.php +++ b/update.php @@ -22,7 +22,7 @@ use Friendica\Worker\Delivery; * This function is responsible for doing post update changes to the data * (not the structure) in the database. * - * Database structure changes are done in config/dbstructure.config.php + * Database structure changes are done in static/dbstructure.config.php * * If there is a need for a post process to a structure change, update this file * by adding a new function at the end with the number of the new DB_UPDATE_VERSION. @@ -33,8 +33,8 @@ use Friendica\Worker\Delivery; * You are currently on version 4711 and you are preparing changes that demand an update script. * * 1. Create a function "update_4712()" here in the update.php - * 2. Apply the needed structural changes in config/dbStructure.php - * 3. Set DB_UPDATE_VERSION in config/dbstructure.config.php to 4712. + * 2. Apply the needed structural changes in static/dbStructure.php + * 3. Set DB_UPDATE_VERSION in static/dbstructure.config.php to 4712. * * If you need to run a script before the database update, name the function "pre_update_4712()" */ @@ -362,16 +362,37 @@ function update_1309() continue; } - if ($item['gravity'] == GRAVITY_PARENT) { - $cmd = Delivery::POST; - } else { - $cmd = Delivery::COMMENT; - } - $deliver_options = ['priority' => PRIORITY_MEDIUM, 'dont_fork' => true]; - Worker::add($deliver_options, 'Delivery', $cmd, $item['id'], $entry['cid']); + Worker::add($deliver_options, 'Delivery', Delivery::POST, $item['id'], $entry['cid']); Logger::info('Added delivery worker', ['command' => $cmd, 'item' => $item['id'], 'contact' => $entry['cid']]); DBA::delete('queue', ['id' => $entry['id']]); } return Update::SUCCESS; } + +function update_1315() +{ + DBA::delete('item-delivery-data', ['postopts' => '', 'inform' => '', 'queue_count' => 0, 'queue_done' => 0]); + return Update::SUCCESS; +} + +function update_1318() +{ + DBA::update('profile', ['marital' => "In a relation"], ['marital' => "Unavailable"]); + DBA::update('profile', ['marital' => "Single"], ['marital' => "Available"]); + + Worker::add(PRIORITY_LOW, 'ProfileUpdate'); + return Update::SUCCESS; +} + +function update_1323() +{ + $users = DBA::select('user', ['uid']); + while ($user = DBA::fetch($users)) { + Contact::updateSelfFromUserID($user['uid']); + } + DBA::close($users); + + return Update::SUCCESS; +} +