Merge branch 'pg-fixes' into 'dev'

fix db upgrade 1228 for postgres

See merge request hubzilla/core!1403
This commit is contained in:
M. Dent 2018-11-28 03:49:22 +01:00
commit 0bd38290e6

View File

@ -11,8 +11,8 @@ class _1228 {
if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) {
$r1 = q("ALTER TABLE item ADD uuid text NOT NULL DEFAULT '' "); $r1 = q("ALTER TABLE item ADD uuid text NOT NULL DEFAULT '' ");
$r2 = q("create index \"uuid_idx\" on channel (\"uuid\")"); $r2 = q("create index \"uuid_idx\" on item (\"uuid\")");
$r3 = q("ALTER TABLE item add summary TEXT NOT NULL"); $r3 = q("ALTER TABLE item add summary TEXT NOT NULL DEFAULT ''");
$r = ($r1 && $r2 && $r3); $r = ($r1 && $r2 && $r3);
} }