aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Update/_1211.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2018-04-30 11:51:14 +0200
committerMario <mario@mariovavti.com>2018-04-30 11:51:14 +0200
commit875597cde1b87709751d7aab98da3aa6a92ab664 (patch)
treeb7f86cf5816d0c6943ee63734a5a8096acb0a19d /Zotlabs/Update/_1211.php
parente1738e8021dd482421e0d7aaae91bc4600550e34 (diff)
downloadvolse-hubzilla-875597cde1b87709751d7aab98da3aa6a92ab664.tar.gz
volse-hubzilla-875597cde1b87709751d7aab98da3aa6a92ab664.tar.bz2
volse-hubzilla-875597cde1b87709751d7aab98da3aa6a92ab664.zip
fix another pgsql update error
Diffstat (limited to 'Zotlabs/Update/_1211.php')
-rw-r--r--Zotlabs/Update/_1211.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Update/_1211.php b/Zotlabs/Update/_1211.php
index 7068ecbd3..26e25536d 100644
--- a/Zotlabs/Update/_1211.php
+++ b/Zotlabs/Update/_1211.php
@@ -8,7 +8,7 @@ class _1211 {
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r1 = q("ALTER TABLE channel ADD channel_active timestamp NOT NULL DEFAULT '0001-01-01 00:00:00' ");
- $r2 = q("create index \"channel_active\" on channel_active (\"channel_active\")");
+ $r2 = q("create index \"channel_active_idx\" on channel (\"channel_active\")");
$r = ($r1 && $r2);
}