]> git.mxchange.org Git - friendica.git/blobdiff - update.php
Replace worker_daemon_mode config entry with key-value entry
[friendica.git] / update.php
index 12a3fb74e61800c094512a046aa93431f6e67ee5..ff3b6b536257779057e65ef59cb7a833e7826078 100644 (file)
@@ -982,7 +982,7 @@ function update_1429()
                return Update::FAILED;
        }
 
-       DI::config()->set('system', 'post_update_version', 1423);
+       DI::keyValue()->set('post_update_version', 1423);
 
        return Update::SUCCESS;
 }
@@ -1138,4 +1138,30 @@ function update_1497()
 {
        DBA::e("UPDATE `user` SET `last-activity` = DATE(`login_date`) WHERE `last-activity` IS NULL");
        return Update::SUCCESS;
-}
\ No newline at end of file
+}
+
+function update_1502()
+{
+       DBA::e("UPDATE `pconfig` SET `cat` = 'calendar' WHERE `k` = 'first_day_of_week'");
+       return Update::SUCCESS;
+}
+
+function update_1505()
+{
+       $conditions = [
+               "(`cat` = ?) AND ((`k` LIKE ?) OR (`k` = ?) OR (`k` LIKE ?) OR (`k` = ?))",
+               "system",
+               "post_update_%",
+               "worker_last_cleaned",
+               "last%",
+               "worker_daemon_mode",
+       ];
+
+       $postUpdateEntries = DBA::selectToArray('config', ['k', 'v'], $conditions);
+
+       foreach ($postUpdateEntries as $postUpdateEntry) {
+               DI::keyValue()->set($postUpdateEntry['k'], $postUpdateEntry['v']);
+       }
+
+       return DBA::delete('config', $conditions) ? Update::SUCCESS : Update::FAILED;
+}