0
votes

enter image description here

when i run php artisan migrate command for creating db table in database then i got this error please tell me. that how to resolve this error.

1

1 Answers

0
votes

The error is quite clear. The table already exists. To resolve that, login to your database and drop the table.

DROP TABLE users;