mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 11:19:55 +03:00
feature 3225: add elapsed time on each upgrade
git-svn-id: http://piwigo.org/svn/trunk@31183 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
928cf9ade9
commit
b5de5c7658
1 changed files with 2 additions and 1 deletions
|
@ -105,6 +105,7 @@ for ($upgrade_id = 140; $upgrade_id <= 144; $upgrade_id++) // TODO change on eac
|
|||
// include & execute upgrade script. Each upgrade script must contain
|
||||
// $upgrade_description variable which describe briefly what the upgrade
|
||||
// script does.
|
||||
$up_start = get_moment();
|
||||
include(UPGRADES_PATH.'/'.$upgrade_id.'-database.php');
|
||||
|
||||
// notify upgrade (TODO change on each release)
|
||||
|
@ -112,7 +113,7 @@ for ($upgrade_id = 140; $upgrade_id <= 144; $upgrade_id++) // TODO change on eac
|
|||
INSERT INTO `'.PREFIX_TABLE.'upgrade`
|
||||
(id, applied, description)
|
||||
VALUES
|
||||
(\''.$upgrade_id.'\', NOW(), \'[migration from 2.6.0 to '.PHPWG_VERSION.'] '.$upgrade_description.'\')
|
||||
(\''.$upgrade_id.'\', NOW(), \'[migration from 2.6.0 to '.PHPWG_VERSION.', '.get_elapsed_time($up_start, get_moment()).'] '.$upgrade_description.'\')
|
||||
;';
|
||||
pwg_query($query);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue