有人谁might知道是什么原因造成的错误,请帮助我
这是我尝试运行php artisan migrate后的结果
The command "mysql --user="${:LARAVEL_LOAD_USER}"
--password="${:LARAVEL_LOAD_PASSWORD}"
--host="${:LARAVEL_LOAD_HOST}"
--port="${:LARAVEL_LOAD_PORT}"
--database="${:LARAVEL_LOAD_DATABASE}" < "${:LARAVEL_LOAD_PATH}"" failed.
Exit Code: 1(General error)
Working directory: C:\xampp\htdocs\FoodTigerv3.5
Output:
================
Error Output:
================
'mysql' is not recognized as an internal or external command,
operable program or batch file.
1条答案
按热度按时间lzfw57am1#
artisan console本身似乎不做MySQL的工作。它使用
mysql
命令行工具来工作。这需要在shell环境中安装mysql client。您还需要将工具的路径添加到PATH设置中。