I try to create a table in MySQL but I get the following error:
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)
How can I fix this?
答案 0 :(得分:1)
Try
php artisan migrate:fresh
Or
Manually empty the database and including the migrations table and then try migrating again.
答案 1 :(得分:0)
试试这个
php artisan migrate:refresh
我希望这项工作。