PM-2697: I solved the problem with workspace-restore and I added the migrated-cases-list in this funcionality

This commit is contained in:
Paula V. Quispe
2015-05-14 16:15:20 -04:00
parent 2d20b5bcc8
commit 4287810ada

View File

@@ -1610,12 +1610,14 @@ class workspaceTools
$workspace->checkMafeRequirements($workspaceName, $lang); $workspace->checkMafeRequirements($workspaceName, $lang);
/*----------------------------------********---------------------------------*/
$start = microtime(true); $start = microtime(true);
CLI::logging("> Updating cache view...\n"); CLI::logging("> Updating List tables...\n");
$workspace->upgradeCacheView(true, false, $lang); $workspace->migrateList($workspace->name);
$stop = microtime(true); $stop = microtime(true);
$final = $stop - $start; $final = $stop - $start;
CLI::logging("<*> Updating cache view Process took $final seconds.\n"); CLI::logging("<*> Updating List Process took $final seconds.\n");
/*----------------------------------********---------------------------------*/
mysql_close($link); mysql_close($link);
} }