From b5de5c7658109d26af0fbcd46550bf6de2e515e6 Mon Sep 17 00:00:00 2001 From: plegall Date: Thu, 28 May 2015 13:10:31 +0000 Subject: feature 3225: add elapsed time on each upgrade git-svn-id: http://piwigo.org/svn/trunk@31183 68402e56-0260-453c-a942-63ccdbb3a9ee --- install/upgrade_2.6.0.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'install') diff --git a/install/upgrade_2.6.0.php b/install/upgrade_2.6.0.php index 90f13c037..3a43e7cb3 100644 --- a/install/upgrade_2.6.0.php +++ b/install/upgrade_2.6.0.php @@ -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); } -- cgit v1.2.3