samjuk / m2-module-verbose-db-status
Adds a verbose mode to the setup:db:status command, to assist with debugging DB schema differences
Installs: 1 938
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 1
Open Issues: 0
Type:magento2-module
pkg:composer/samjuk/m2-module-verbose-db-status
Requires
- php: >=7.3
This package is auto-updated.
Last update: 2025-11-20 13:12:32 UTC
README
This is a simple module that adds a verbose and extra verbose mode to the setup:db:status command.
Especially useful within a CI environment for identifying what schema changes are causing a database migration, which in turn prevents most typical zero downtime deployment strategies.
| Example with the verbose flag set | Example with the extra verbose flag set |
|---|---|
![]() |
![]() |
Installation
composer require samjuk/m2-module-verbose-db-status
php bin/magento module:enable SamJUK_VerboseDBStatus && php bin/magento cache:flush
Usage
Run the setup:db:status command, specifying the appropriate verbosity level
php bin/magento setup:db:status # Standard Magento Output php bin/magento setup:db:status -v # Display before and after for modified values php bin/magento setup:db:status -vv # Display before and after for modified values, and raw data diff

