diff options
author | zotlabs <mike@macgirvin.com> | 2018-05-02 23:18:09 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-05-02 23:18:09 -0700 |
commit | 75c8f656c9cb6d4b664cccd2e72e23499547d088 (patch) | |
tree | 9cc3e0ed340283fe168bb904c911248a2f7fd661 /Zotlabs/Update | |
parent | 459ec78a5e3cb09ee908fd7810bbb0b80b2e4713 (diff) | |
parent | d83f12e883e79b7268677f8981579102c48ca00b (diff) | |
download | volse-hubzilla-75c8f656c9cb6d4b664cccd2e72e23499547d088.tar.gz volse-hubzilla-75c8f656c9cb6d4b664cccd2e72e23499547d088.tar.bz2 volse-hubzilla-75c8f656c9cb6d4b664cccd2e72e23499547d088.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'Zotlabs/Update')
-rw-r--r-- | Zotlabs/Update/_1211.php | 2 |
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); } |