We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
个人学习记录(望勿删)
环境: PHPStudy_Pro Nginx 1.15.11 PHP 7.3.4 nts MySQL 5.7.26
详解安装步骤:
composer install
.env.example
.env
php artisan migrate
php artisan db:seed --class=InitSeeder
遇见问题:
执行php artisan migrate报错 问题: 未新建数据库discover 解决: 新建数据库discover
discover
执行php artisan migrate报错 问题: 默认数据库引擎 解决: 将默认数据库引擎更改为 InnoDB
执行php artisan migrate报错 问题: 之前生成表结构时已在数据库中存在表 无法再次创建 解决: 将数据库discover中的表清空
The text was updated successfully, but these errors were encountered:
No branches or pull requests
个人学习记录(望勿删)
环境:
PHPStudy_Pro
Nginx 1.15.11
PHP 7.3.4 nts
MySQL 5.7.26
详解安装步骤:
composer install
.env.example
重命名为.env
并修改相关数据库参数(可参考Learnku文献)php artisan migrate
php artisan db:seed --class=InitSeeder
遇见问题:
执行
php artisan migrate
报错问题: 未新建数据库
discover
解决: 新建数据库
discover
执行
php artisan migrate
报错问题: 默认数据库引擎
解决: 将默认数据库引擎更改为 InnoDB
执行
php artisan migrate
报错问题: 之前生成表结构时已在数据库中存在表 无法再次创建
解决: 将数据库
discover
中的表清空The text was updated successfully, but these errors were encountered: