We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cf0133f + 46f874a commit c2d5478Copy full SHA for c2d5478
src/DB_Command.php
@@ -600,7 +600,7 @@ public function size( $args, $assoc_args ) {
600
// Add the table size to the list.
601
$rows[] = array(
602
'Name' => $table_name,
603
- 'Size' => size_format( $table_bytes ),
+ 'Size' => strtoupper( size_format( $table_bytes ) ),
604
);
605
}
606
} else {
@@ -615,7 +615,7 @@ public function size( $args, $assoc_args ) {
615
// Add the database size to the list.
616
617
'Name' => DB_NAME,
618
- 'Size' => size_format( $db_bytes ),
+ 'Size' => strtoupper( size_format( $db_bytes ) ),
619
620
621
0 commit comments