LoginSignup
0
0

More than 3 years have passed since last update.

Laravel「php artisan migrate」でエラー「could not find driver」が発生したときの解決方法

Last updated at Posted at 2020-11-29

原因

エラーメッセージに書いてある通り、driverが見つからないのが原因

解決方法

php.iniextension=pdo_mysqlのコメントアウトを外す

// 変更前
;extension=pdo_mysql

// 変更後
extension=pdo_mysql
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0