Laravel Artisan 简单迁移的命令?

Laravel Artisan Command for simple Migration?

是否有针对 laravel 的 command/package 可以简化或自动化简单的 Laravel 迁移?

示例:"php artisan migration:addfield --table: Posts --field: date_birth etc/parameters ..."

目标是简化和自动化简单的操作,例如对表进行小的更改。

有吗?

您是否正在寻找要添加到现有 table 的字段??然后使用此

php artisan make:migration add_date_of_birth_to_posts_table --table=posts 

您可以直接提及 table 而无需 --table 标签

php artisan make:migration add_date_of_birth_to_posts

您可以使用这个由 Jeffrey Way(Laracasts 所有者)创建的包

https://github.com/laracasts/Laravel-5-Generators-Extended