diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-02-19 10:59:21 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-02-19 10:59:21 +0100 |
commit | 1732ffed7a3a9c1ab8811baef3a36f70a64bce7a (patch) | |
tree | dbdc2ac2ed9ea6310c0d54385c41888d7a460ee1 /Zotlabs | |
parent | 46cb45d94b6d7892a10b043e036da09cc72cbe98 (diff) | |
download | volse-hubzilla-1732ffed7a3a9c1ab8811baef3a36f70a64bce7a.tar.gz volse-hubzilla-1732ffed7a3a9c1ab8811baef3a36f70a64bce7a.tar.bz2 volse-hubzilla-1732ffed7a3a9c1ab8811baef3a36f70a64bce7a.zip |
backport update 1201 to the new update system and move dummy update to 1202
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Update/_1201.php | 18 | ||||
-rw-r--r-- | Zotlabs/Update/_1202.php | 15 |
2 files changed, 28 insertions, 5 deletions
diff --git a/Zotlabs/Update/_1201.php b/Zotlabs/Update/_1201.php index c12797377..416d35ad6 100644 --- a/Zotlabs/Update/_1201.php +++ b/Zotlabs/Update/_1201.php @@ -6,10 +6,18 @@ 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 - - return UPDATE_SUCCESS; + 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) + "); + } + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; } -}
\ No newline at end of file + +} diff --git a/Zotlabs/Update/_1202.php b/Zotlabs/Update/_1202.php new file mode 100644 index 000000000..c9ccd157b --- /dev/null +++ b/Zotlabs/Update/_1202.php @@ -0,0 +1,15 @@ +<?php + +namespace Zotlabs\Update; + +class _1202 { + + 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 + + return UPDATE_SUCCESS; + + } +} |