生成遷移檔案
每次需要更改架構時,使用正確的檔名建立新的遷移檔案將是一件苦差事。值得慶幸的是,Laravel 的 artisan
命令可以為你生成遷移:
php artisan make:migration add_last_logged_in_to_users_table
你也可以使用上面的命令使用 --table
和 --create
標誌。這些是可選的,只是為了方便起見,並將相關的樣板程式碼插入到遷移檔案中。
php artisan make:migration add_last_logged_in_to_users_table --table=users
php artisan make:migration create_logs_table --create=logs
你可以使用 --path
選項為生成的遷移指定自定義輸出路徑。該路徑相對於應用程式的基本路徑。
php artisan make:migration --path=app/Modules/User/Migrations