I have some problems with php artisan migrate. It's only install users and migrations in database but no other files that i have. I installed this project https://github.com/thedevdojo/chatter so you can be sure that code is clear and it's working, it's not problem only on this project but when i type php artisan make:auth it's not installing reset password table but only users and it says like this:
[Illuminate\Database\QueryException] SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists (SQL: create table
users
(id
int unsigned not null auto_increment primary key,name
varchar(255) not null,
password
varchar(255) not null,remember_token
varchar(100) null,created_at
timestamp null,updated_at
tim estamp null) default character set utf8mb4 collate utf8mb4_unicode_ci)[PDOException] SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists