kitloong/laravel-migrations-generator
Generate Laravel migration files from an existing database schema, including columns, indexes, and foreign keys. Works with MariaDB/MySQL, PostgreSQL, SQL Server, and SQLite. Generate all tables or target/ignore specific tables via Artisan.
-t, --tables[=TABLES]
By default, the migrate:generate command will generate migrations for all tables and views in your database.
The --tables option allows you to specify which tables you want to generate migrations for. This is useful when you only want to generate migrations for specific tables or views in your database.
To use the --tables option, you need to provide a comma-separated list of table / view names.
php artisan migrate:generate --tables="users,posts,comments"
How can I help you explore Laravel packages today?