diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-16 12:42:02 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-16 12:42:02 -0800 |
commit | f492f808f4861ae9937dcaf3bf8476513ae1c091 (patch) | |
tree | dba3179893ab7beae238568a87578f2a498f12aa /Zotlabs/Update/_1194.php | |
parent | 27cd26ec1e26b6c389a623395687af5052f0b5a1 (diff) | |
download | volse-hubzilla-f492f808f4861ae9937dcaf3bf8476513ae1c091.tar.gz volse-hubzilla-f492f808f4861ae9937dcaf3bf8476513ae1c091.tar.bz2 volse-hubzilla-f492f808f4861ae9937dcaf3bf8476513ae1c091.zip |
refactor of the DB update system. Updates are now stored individually in Zotlabs/Update/_nnnn.php and are objects; so only the pending updates need to be loaded and executed rather than all historical updates. There is one single number (DB_UPDATE_VERSION) representing the current version and it is EQUAL TO the last known update. A dummy update _1201 was created to address the difference in counting behaviour; it will be executed on the next change of DB_UPDATE_VERSION as well as the next update. The database config values are also loaded from disk on every update immediately before setting the update lock in order to reduce timing conflicts and race conditions.
Diffstat (limited to 'Zotlabs/Update/_1194.php')
-rw-r--r-- | Zotlabs/Update/_1194.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1194.php b/Zotlabs/Update/_1194.php new file mode 100644 index 000000000..916723eaa --- /dev/null +++ b/Zotlabs/Update/_1194.php @@ -0,0 +1,22 @@ +<?php + +namespace Zotlabs\Update; + +class _1194 { +function run() { + $r = q("select id, resource_id from item where resource_type = 'nwiki'"); + if($r) { + foreach($r as $rv) { + $mimetype = get_iconfig($rv['id'],'wiki','mimeType'); + q("update item set mimetype = '%s' where resource_type = 'nwikipage' and resource_id = '%s'", + dbesc($mimetype), + dbesc($rv['resource_id']) + ); + } + } + + return UPDATE_SUCCESS; +} + + +}
\ No newline at end of file |