I'm following this tutorial. I've installed passport using composer as well. But when I run this command:
php artisan migrate
It throws:
In Connection.php line 664:
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists (SQL: cre ate table
users
(id
int unsigned not null auto_increment primary key,name
varchar(255) n ot null,password
varchar(255) not null,remember_token
varc har(100) null,created_at
timestamp null,updated_at
timestamp null) default character set utf8mb4 collate utf8mb4_unicode_ci)In Connection.php line 458:
SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists
Any idea how can I fix the problem ?