aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorM. Dent <dentm42@gmail.com>2018-11-28 03:49:22 +0100
committerM. Dent <dentm42@gmail.com>2018-11-28 03:49:22 +0100
commit0bd38290e6ef65d628e687ea86a13e15a38997af (patch)
tree4a99a39e4b6aa3a064884bad77a01ce4ffb4cfca
parente5883dd60536c3ba35a7569d61c3bc19a7ebc3e1 (diff)
parent16c7aa2813b8a7fca52ac3f214c214cc01834308 (diff)
downloadvolse-hubzilla-0bd38290e6ef65d628e687ea86a13e15a38997af.tar.gz
volse-hubzilla-0bd38290e6ef65d628e687ea86a13e15a38997af.tar.bz2
volse-hubzilla-0bd38290e6ef65d628e687ea86a13e15a38997af.zip
Merge branch 'pg-fixes' into 'dev'
fix db upgrade 1228 for postgres See merge request hubzilla/core!1403
-rw-r--r--Zotlabs/Update/_1228.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Update/_1228.php b/Zotlabs/Update/_1228.php
index f8a506bb4..9e6bf8047 100644
--- a/Zotlabs/Update/_1228.php
+++ b/Zotlabs/Update/_1228.php
@@ -11,8 +11,8 @@ class _1228 {
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r1 = q("ALTER TABLE item ADD uuid text NOT NULL DEFAULT '' ");
- $r2 = q("create index \"uuid_idx\" on channel (\"uuid\")");
- $r3 = q("ALTER TABLE item add summary TEXT NOT NULL");
+ $r2 = q("create index \"uuid_idx\" on item (\"uuid\")");
+ $r3 = q("ALTER TABLE item add summary TEXT NOT NULL DEFAULT ''");
$r = ($r1 && $r2 && $r3);
}