Generate migrations from existing database structures
"Laravel Migration Generator lets you generate migrations from existing database structures as an alternative to the schema dump provided by Laravel.
The primary use case for this package would be a project that has many migrations that alter tables using
->change()
from doctrine/dbal that SQLite doesn't support and need a way to get table structures updated for SQLite to use in tests.Another use case would be taking a project with a database and no migrations and turning that database into base migrations."
Bennett Treptow