Laravel 8 生成遷移

2021-07-15 16:52 更新

使用 make:migration Artisan 命令 命令來(lái)創(chuàng)建遷移:

php artisan make:migration create_users_table 

提示:遷移 stubs 必須使用 stub publishing 進(jìn)行自定義。

--table--create 選項(xiàng)也可用于確定表的名稱以及是否在遷移中創(chuàng)建新的數(shù)據(jù)表。這些選項(xiàng)用指定的遷移模板預(yù)先填充指定的數(shù)據(jù)表:

php artisan make:migration create_users_table --create=users

php artisan make:migration add_votes_to_users_table --table=users 

這里提到的操作,是將會(huì)為生成的遷移文件指定自定義的輸出路徑,您在執(zhí)行 make:migration 命令時(shí),可以嘗試使用 --path 參數(shù)。 給定的路徑是以應(yīng)用程序文件夾為相對(duì)路徑。


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)