diff options
author | Mario <mario@mariovavti.com> | 2018-11-22 12:52:08 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-11-22 12:52:08 +0100 |
commit | 16c7aa2813b8a7fca52ac3f214c214cc01834308 (patch) | |
tree | eb3c5fa0c8ff88e87eeba39ed4e706eb3f15422e /Zotlabs/Update | |
parent | 85f52d2aeda44072013b9af5bfd470fbf47c2769 (diff) | |
download | volse-hubzilla-16c7aa2813b8a7fca52ac3f214c214cc01834308.tar.gz volse-hubzilla-16c7aa2813b8a7fca52ac3f214c214cc01834308.tar.bz2 volse-hubzilla-16c7aa2813b8a7fca52ac3f214c214cc01834308.zip |
fix db upgrade 1228 for postgres
Diffstat (limited to 'Zotlabs/Update')
-rw-r--r-- | Zotlabs/Update/_1228.php | 4 |
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); } |