aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-03-08 08:55:25 +0100
committerMario Vavti <mario@mariovavti.com>2018-03-08 08:55:25 +0100
commitf3a753bda603595fcff25a8e4fa9131e56872f57 (patch)
tree318837a058d3594c974e101c93af04cc6155a52b /Zotlabs/Update
parent17c102ebe115bd8272da830bf9523b691ce115ee (diff)
parent1700aedbed9050ca2eee621c04c29e5b34150bc5 (diff)
downloadvolse-hubzilla-f3a753bda603595fcff25a8e4fa9131e56872f57.tar.gz
volse-hubzilla-f3a753bda603595fcff25a8e4fa9131e56872f57.tar.bz2
volse-hubzilla-f3a753bda603595fcff25a8e4fa9131e56872f57.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Update')
-rw-r--r--Zotlabs/Update/_1209.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1209.php b/Zotlabs/Update/_1209.php
new file mode 100644
index 000000000..5ec449395
--- /dev/null
+++ b/Zotlabs/Update/_1209.php
@@ -0,0 +1,26 @@
+<?php
+
+namespace Zotlabs\Update;
+
+class _1209 {
+
+ function run() {
+
+ if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
+ $r1 = q("ALTER TABLE poll_elm ADD pelm_order numeric(6) NOT NULL DEFAULT '0' ");
+ $r2 = q("create index \"pelm_order_idx\" on poll_elm \"pelm_order\"");
+
+ $r = ($r1 && $r2);
+ }
+ else {
+ $r = q("ALTER TABLE `poll_elm` ADD `pelm_order` int(11) NOT NULL DEFAULT 0,
+ ADD INDEX `pelm_order` (`pelm_order`)");
+ }
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+
+ }
+
+}