php artisan migrate让我在Lumen中出错

时间:2018-06-08 12:57:48

标签: php lumen artisan migrate

当我尝试在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。

2 个答案:

答案 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