我尝试在 MySQL 中创建一个表,但出现以下错误:
SQLSTATE[42S01]:基表或视图已存在:1050 表“迁移”已存在(SQL:创建表
migrations(idint unsigned not null auto_increment 主键,migrationvarchar(255) not null,batchint not null)默认字符集 utf8 collate utf8_unicode_ci )
我怎样才能解决这个问题?
我尝试在 MySQL 中创建一个表,但出现以下错误:
SQLSTATE[42S01]:基表或视图已存在:1050 表“迁移”已存在(SQL:创建表
migrations(idint unsigned not null auto_increment 主键,migrationvarchar(255) not null,batchint not null)默认字符集 utf8 collate utf8_unicode_ci )
我怎样才能解决这个问题?