首页 > 解决方案 > php artisan 迁移显示错误

问题描述

[在此处输入图片描述][1]

Illuminate\Database\QueryException:SQLSTATE[42S01]:基表或视图已经存在:1050 表“用户”已经存在(SQL:创建表usersidbigint unsigned not null auto_increment 主键,namevarchar(255) not null,emailvarchar(255) not null, usernamevarchar(255) not null, email_verified_attimestamp null, passwordvarchar(255) not null, remember_tokenvarchar(100) null, created_attimestamp null, updated_attimestamp null) 默认字符集 utf8mb4 collat​​e 'utf8mb4_unicode_ci')

标签: mysqllaravelmigrationlaravel-5.8

解决方案


使用以下命令:

php artisan migrate:rollback 或者 php artisan migrate:fresh

此错误向您显示,因为您之前尝试过运行命令“php artisan migrate”。这必须回滚以“撤消”这些更改,或者清除数据库表。


推荐阅读