MySQL的错误:表或​​视图已经存在

我尝试在MySQL中创建一个表,但我得到以下错误:MySQL的错误:表或​​视图已经存在

SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'migrations' already exists (SQL: create table migrations (id int unsigned not null auto_increment primary key, migration varchar(255) not null, batch int not null) default character set utf8 collate utf8_unicode_ci)

我该如何解决这个问题?

回答:

尝试

php artisan migrate:fresh 

或者

手动清空数据库,包括迁移表,然后再次尝试迁移。

回答:

试试这个

php artisan migrate:refresh 

可我希望这项工作。

以上是 MySQL的错误:表或​​视图已经存在 的全部内容, 来源链接: utcz.com/qa/261009.html

回到顶部