aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1200.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Update/_1200.php')
-rw-r--r--Zotlabs/Update/_1200.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1200.php b/Zotlabs/Update/_1200.php
new file mode 100644
index 000000000..00c742593
--- /dev/null
+++ b/Zotlabs/Update/_1200.php
@@ -0,0 +1,20 @@
+<?php
+
+namespace Zotlabs\Update;
+
+class _1200 {
+function run() {
+
+ if(ACTIVE_DBTYPE == DBTYPE_MYSQL) {
+ $r = q("ALTER TABLE item
+ DROP INDEX item_type,
+ ADD INDEX uid_item_type (uid, item_type)
+ ");
+ }
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}
+
+} \ No newline at end of file