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.
-tp, --template-path[=TEMPLATE-PATH]
The --template-path option allows you to specify the location of the template for this generator. This is useful when you want to use your own template for generating migrations.
Customize your template using the default stub, and make sure to include the following placeholders:
{{ use }}{{ up }}{{ down }}The placeholder should be self-explanatory in default stub.
To use the --template-path option, you need to provide the path to the directory containing the template files. For example:
php artisan migrate:generate --template-path="custom/templates"
This command will use the templates located in the custom/templates directory for generating the migration files.
How can I help you explore Laravel packages today?