shlogg · Early preview
Paul Redmond @paulredmond

Laravel DB Auditor: Audit MySQL Database Standards

DB Auditor for Laravel audits MySQL databases & adds missing constraints via CLI. Identify areas of improvement during dev to optimize prod database. Use Artisan console commands like `db:track` for migration insights.

The DB Auditor package for Laravel helps you audit your MySQL database standards and provides options to add missing constraints via CLI:
    
    DB Auditor table report
This package can help you identify areas of your database that need work during development to optimize your production database. It offers the following features:
Audit and review an existing MySQL database
Scan MySQL databases to provide insights of mysql standards and constraints
Apply scan results automatically via the command line
Show a list of tables that fail audit and don't follow recommended standards
You can access...