时间:2021-07-01 10:21:17 帮助过:3人阅读
看教程里面,说到
php artisan make:model Article
这里使用的是 artisan的make:model 的方法
我可以创建对应的model的php文件
但是
为什么只有model的php文件,没有database的migrations文件家下面的
数据库迁移的php文件?
楼主操作如图。
看教程里面,说到
php artisan make:model Article
这里使用的是 artisan的make:model 的方法
我可以创建对应的model的php文件
但是
为什么只有model的php文件,没有database的migrations文件家下面的
数据库迁移的php文件?
楼主操作如图。
php artisan make:model Page -m
先php artisan make:migration create_article_table
再 php artisan migrate生成