1
0
Fork 0

There are no dead nodes anymore

This commit is contained in:
Jeroen De Meerleer 2019-07-09 09:23:36 +02:00
commit 01dc0c031c
4 changed files with 13 additions and 4 deletions

View file

@ -373,4 +373,14 @@ function update_1309()
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;
}