扫码关注官方订阅号
看教程里面,说到
php artisan make:model Article
这里使用的是 artisan的make:model 的方法我可以创建对应的model的php文件但是为什么只有model的php文件,没有database的migrations文件家下面的数据库迁移的php文件?
楼主操作如图。
认证0级讲师
php artisan make:model Page -m
先php artisan make:migration create_article_table再 php artisan migrate生成
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
php artisan make:model Page -m
先php artisan make:migration create_article_table
再 php artisan migrate生成