This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout master | |
git branch --merged | egrep -v "(^\*|master|dev)" | xargs git branch -d | |
git gc --aggressive --prune=now |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
table_schema AS `Database`, | |
table_name AS `Table`, | |
ROUND( | |
( | |
(data_length + index_length) / 1024 / 1024 | |
), | |
2 | |
) `MB`, | |
TABLE_ROWS AS `Rows` |
NewerOlder