¿Cómo puedo hacer una migración en laravel 5.5?

He creado un proyecto de autenticación conlaravel 5.5 y creé una nueva migración y cuando migro recibo este mensaje de error:

In Connection.php línea 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 línea 449:

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

Intento php artisan migrate --force y php artisan migrate: rollback

e intente soltar todas las tablas y migrarlo nuevamente y aún tenga este error

Respuestas a la pregunta(4)

Su respuesta a la pregunta