Laravel-8:PHP Artisan迁移不起作用

问题描述

我尝试运行命令:php artisan migration,但这给了我下面的错误。

错误:

   Illuminate\Database\QueryException 

  SQLSTATE[HY000]: General error: 1449 The user specified as a definer ('mysql.infoschema'@'localhost') does not exist (SQL: select * from information_schema.tables where table_schema = test and table_name = migrations and table_type = 'BASE TABLE')

  at vendor/laravel/framework/src/Illuminate/Database/Connection.php:671
    667▕         // If an exception occurs when attempting to run a query,we'll format the error
    668▕         // message to include the bindings with SQL,which will make this exception a
    669▕         // lot more helpful to the developer instead of just the database's errors.
    670▕         catch (Exception $e) {
  ➜ 671▕             throw new QueryException(
    672▕                 $query,$this->prepareBindings($bindings),$e
    673▕             );
    674▕         }
    675▕ 

我也在Mac上使用Sequel Pro创建了一个数据库,但是当我创建数据库时,我不确定它是否已经按照预期的方式创建。

其设置为:

host id: 127.0.0.1
username: root

.env中的设置为:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=test
DB_USERNAME=root
DB_PASSWORD=

解决方法

我试图一次又一次地进行迁移 因此只需查看文件.env并禁用注释DB_HOST = mysql并启用DB_HOST = 127.0.0.1 现在再次尝试将终端php artisan迁移,以便一切正常!

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...