mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Created updatescript
This commit is contained in:
parent
dea0bfd01f
commit
9c8051ef64
2 changed files with 11 additions and 1 deletions
|
@ -34,7 +34,7 @@
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
|
|
||||||
if (!defined('DB_UPDATE_VERSION')) {
|
if (!defined('DB_UPDATE_VERSION')) {
|
||||||
define('DB_UPDATE_VERSION', 1316);
|
define('DB_UPDATE_VERSION', 1317);
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
10
update.php
10
update.php
|
@ -374,3 +374,13 @@ function update_1315()
|
||||||
{
|
{
|
||||||
DBA::delete('item-delivery-data', ['postopts' => '', 'inform' => '', 'queue_count' => 0, 'queue_done' => 0]);
|
DBA::delete('item-delivery-data', ['postopts' => '', 'inform' => '', 'queue_count' => 0, 'queue_done' => 0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function update_1316()
|
||||||
|
{
|
||||||
|
DBA::update('profile', ['marital' => "In a relation"], ['marital' => "Unavailable"]);
|
||||||
|
DBA::update('profile', ['marital' => "Single"], ['marital' => "Available"]);
|
||||||
|
|
||||||
|
Worker::add(PRIORITY_LOW, 'ProfileUpdate');
|
||||||
|
Contact::updateSelfFromUserID();
|
||||||
|
GContact::updateForUser();
|
||||||
|
}
|
Loading…
Reference in a new issue