aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-03-02 10:10:29 +0100
committerMario Vavti <mario@mariovavti.com>2018-03-02 10:28:56 +0100
commitb44e46f8be648f4ae1f6015eb4643de70b793b1e (patch)
tree7c044a5150d3b9e3448d61ebd5edb0d699e0b680 /Zotlabs
parentf5169bdbbb969f3b13cdcc57348a3acf7a008791 (diff)
downloadvolse-hubzilla-b44e46f8be648f4ae1f6015eb4643de70b793b1e.tar.gz
volse-hubzilla-b44e46f8be648f4ae1f6015eb4643de70b793b1e.tar.bz2
volse-hubzilla-b44e46f8be648f4ae1f6015eb4643de70b793b1e.zip
db update to drop index resource_type. we have uid_resource_type now.
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Update/_1207.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1207.php b/Zotlabs/Update/_1207.php
new file mode 100644
index 000000000..f53bc46ae
--- /dev/null
+++ b/Zotlabs/Update/_1207.php
@@ -0,0 +1,24 @@
+<?php
+
+namespace Zotlabs\Update;
+
+class _1207 {
+
+ function run() {
+
+ if(ACTIVE_DBTYPE == DBTYPE_MYSQL) {
+ $r = q("ALTER TABLE item
+ DROP INDEX resource_type
+ ");
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+ }
+ else {
+ return UPDATE_SUCCESS;
+ }
+
+ }
+
+}