aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1201.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Update/_1201.php')
-rw-r--r--Zotlabs/Update/_1201.php20
1 files changed, 16 insertions, 4 deletions
diff --git a/Zotlabs/Update/_1201.php b/Zotlabs/Update/_1201.php
index c12797377..920a7401e 100644
--- a/Zotlabs/Update/_1201.php
+++ b/Zotlabs/Update/_1201.php
@@ -6,10 +6,22 @@ class _1201 {
function run() {
- // empty update in order to make the DB_UPDATE_VERSION equal to the current maximum update function
- // rather than being one greater than the last known update
+ if(ACTIVE_DBTYPE == DBTYPE_MYSQL) {
+ $r = q("ALTER TABLE item
+ DROP INDEX item_thread_top,
+ ADD INDEX uid_item_thread_top (uid, item_thread_top),
+ ADD INDEX uid_item_blocked (uid, item_blocked),
+ ADD INDEX item_deleted_pending_remove_changed (item_deleted, item_pending_remove, changed)
+ ");
- return UPDATE_SUCCESS;
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+ }
+ else {
+ return UPDATE_SUCCESS;
+ }
}
-} \ No newline at end of file
+
+}