-
-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add DatabaseSizeCheck #151
Add DatabaseSizeCheck #151
Conversation
Laravel 10.x Compatibility
Fix empty output when running `artisan health:list --fresh`
Very nice work, thank you! However the tests are failing? Could you take a look at that? |
Thanks! Updated to use |
Rebased on main, could you approve the tests run? |
OK, could you give it another try? 🙂 |
We're all good, thanks again for this excellent PR! |
Thanks ❤️ You and the Spatie team thank you for the great package! |
This PR adds a new check called
DatabaseSizeCheck
. This check does what the name says – it fails when the size of the database reaches a certain threshold.I decided to use GB as the order of magnitude instead of MB, since databases that are <1 GB usually aren't causing that much problems.
Thanks!