标签:san images art 分享 hostname creat img 执行 导入数据
# php artisan make:migration create_table_cars --create=cars
# php a‘r‘tisan migrate
出现此状况:
解决方案:
直接编辑:/Applications/MAMP/htdocs/lu/vendor/laravel/lumen-framework/config/database.php
//‘host‘ => env(‘DB_HOST‘, ‘localhost‘), ‘host‘ => env(‘DB_HOST‘, ‘localhost‘) . (‘homestead‘ == gethostname() ? null : ‘:3306‘),
最后执行:
# php artisan migrate
标签:san images art 分享 hostname creat img 执行 导入数据
原文地址:http://www.cnblogs.com/akidongzi/p/6718900.html