Merge branch 'ent-10277-vista-about-tarda-mucho' into 'develop'

Ent 10277 vista about tarda mucho

See merge request artica/pandorafms!5493
This commit is contained in:
Matias Didier 2023-02-02 08:46:17 +00:00
commit 9a7c9488eb
1 changed files with 0 additions and 13 deletions

View File

@ -659,15 +659,6 @@ class Diagnostics extends Wizard
{
global $config;
// Size BBDD.
$dbSizeSql = db_get_value_sql(
'SELECT ROUND(SUM(data_length+index_length)/1024/1024,3)
FROM information_schema.TABLES'
);
// Add unit size.
$dbSize = $dbSizeSql.' M';
$result = [
'error' => false,
'data' => [
@ -683,10 +674,6 @@ class Diagnostics extends Wizard
'name' => __('DB Schema Build'),
'value' => $config['db_scheme_build'],
],
'dbSize' => [
'name' => __('DB Size'),
'value' => $dbSize,
],
],
];