diff options
author | M. Dent <dentm42@gmail.com> | 2018-12-02 19:33:54 +0100 |
---|---|---|
committer | M. Dent <dentm42@gmail.com> | 2018-12-02 19:33:54 +0100 |
commit | 0b38ab259c6179fc3465efe2a1ed721a73311ba8 (patch) | |
tree | d1cd6fca0a88c11782b4376faec133a1c2812bf2 /Zotlabs/Update/_1229.php | |
parent | 237c6eed5024d2507630f2321218685b3540c957 (diff) | |
parent | 2a57e00cb4a7dada0993e91e0e2176ad335cf12f (diff) | |
download | volse-hubzilla-0b38ab259c6179fc3465efe2a1ed721a73311ba8.tar.gz volse-hubzilla-0b38ab259c6179fc3465efe2a1ed721a73311ba8.tar.bz2 volse-hubzilla-0b38ab259c6179fc3465efe2a1ed721a73311ba8.zip |
Merge branch 'photocache' into 'dev'
Add Photo Cache addon support
See merge request hubzilla/core!1412
Diffstat (limited to 'Zotlabs/Update/_1229.php')
-rw-r--r-- | Zotlabs/Update/_1229.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1229.php b/Zotlabs/Update/_1229.php new file mode 100644 index 000000000..8e8711644 --- /dev/null +++ b/Zotlabs/Update/_1229.php @@ -0,0 +1,32 @@ +<?php + +namespace Zotlabs\Update; + +class _1229 { + + function run() { + + q("START TRANSACTION"); + + if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { + $r1 = q("ALTER TABLE photo ADD expires timestamp NOT NULL DEFAULT '0001-01-01 00:00:00' "); + $r2 = q("create index \"photo_expires_idx\" on photo (\"expires\")"); + + $r = ($r1 && $r2); + } + else { + $r = q("ALTER TABLE `photo` ADD `expires` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' , + ADD INDEX `expires` (`expires`)"); + } + + if($r) { + q("COMMIT"); + return UPDATE_SUCCESS; + } + + q("ROLLBACK"); + return UPDATE_FAILED; + + } + +} |