我已经创建了一个模型php artisan make:model CommentOnPost
,并且想要创建它的迁移文件,我应该使用什么迁移名称?
是php artisan make:migration create_comment_on_posts_table
正确吗????
答案 0 :(得分:0)
您也可以使用migration
创建model
文件。
php artisan make:model CommentOnPost -m
->迁移,使用此命令创建模型文件
其他
php artisan make:migration create_comment_on_posts_table --create=comment_on_posts
//仅创建迁移文件
php artisan make:model CommentOnPost -mcr
//用于创建Migration
,Model
,Controller
文件