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(idint unsigned not null auto_increment primary key,migrationvarchar(255) not null,batchint not null) default character set utf8 collate utf8_unicode_ci)
How can I fix this?
php artisan migrateorphp artisan migrate:install? - lagbox