当我尝试在Lumen中迁移时,它会给我以下错误
在Connection.php line 664:
could not find driver (SQL: select * from information_schema.tables where t
able_schema = authors and table_name = migrations)
在Connector.php line 68:
could not find driver
我在ubuntu 16上使用apache2。
答案 0 :(得分:0)
如果您使用MySQL
数据库,请确保您的pdo_mysql
php扩展程序已启用。
答案 1 :(得分:0)
我通过更新PHP版本解决了我的问题。 我使用的是php7.0。 我把它更新到php7.2。 流明需要最低限度的php7.1。
我使用了以下命令
sudo apt-get install php7.2-mysql
php artisan cache:clear