Como posso fazer uma migração no laravel 5.5?

Eu criei um projeto Auth comlaravel 5.5 e criei uma nova migração e, quando migro, recebo esta mensagem de erro:

In Connection.php linha 647:

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,
      `username` varchar(255) not null,
      `email` varchar(255) not null,
      `password` varchar(255) not null,
      `remember_token` varchar(100) null,
      `created_at` timestamp null,
      `updated_at` timestamp null,
      `role` int not null
      ) default character set utf8mb4 collate utf8mb4_unicode_ci
)

In Connection.php linha 449:

SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists

i tente o php artisan migrate --force e o php artisan migrate: rollback

e tente soltar todas as tabelas e migrá-lo novamente e ainda tenho esse erro

questionAnswers(4)

yourAnswerToTheQuestion