Created updatescript
authorJeroen De Meerleer <me@jeroened.be>
Sun, 7 Jul 2019 21:06:37 +0000 (23:06 +0200)
committerJeroen De Meerleer <me@jeroened.be>
Sun, 7 Jul 2019 21:10:35 +0000 (23:10 +0200)
config/dbstructure.config.php
update.php

index 3c2b813..284a6ae 100755 (executable)
@@ -34,7 +34,7 @@
 use Friendica\Database\DBA;
 
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1316);
+       define('DB_UPDATE_VERSION', 1317);
 }
 
 return [
index aead1b9..0c6b439 100644 (file)
@@ -374,3 +374,13 @@ function update_1315()
 {
        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();
+}
\ No newline at end of file