I was creating an application on Laravel. At some point of time, I had to reinstall my WAMP server. Now I installed it again and created the same database. When I tried to migrate everything again using the command php artisan migrate
, I got the following errors.
[Illuminate\Database\QueryException]
SQLSTATE[42S02]: Base table or view not found: 1146 La table 'learning.migrations' n'exists pas (SQL: create table 'migrations' ('migration' varchar(255) not null, 'batch' int null) default character set utf8 collate utf8_unicode_ci)
and
[PDOException]
SQLSTATE[42S02]: Base table or view not found:1146 La table 'learning.migrations' n'existe pas
and
migrate [--bench[="..."]] [--database[="..."]] [--force] [--path["..."]] [--package[="..."]] [--pretend] [--seed]
What might be the problem? How can I solve this?