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