]> git.mxchange.org Git - friendica.git/blobdiff - update.php
some minor fixings
[friendica.git] / update.php
index 077a56e66e795252e8027ab6b1f73caa1ad338f3..1bdccddeaa77f951fbb3ab93d365824dab2f7cfc 100644 (file)
@@ -369,3 +369,18 @@ function update_1309()
        }
        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;
+}