C:\Users\M\Desktop\blog>php artisan migrate
Migrating: 2014_10_12_000000_create_users_table
Illuminate\Database\QueryException
 SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists (SQL: create table `users` (`id` bigint unsigned not null auto_increment pr
imary key, `name` varchar(255) not null, `email` varchar(255) not null, `email_verified_at` timestamp 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')
 at C:\Users\M\Desktop\blog\vendor\laravel\framework\src\Illuminate\Database\Connection.php:678
   674▕         // If an exception occurs when attempting to run a query, we'll format the error
   675▕         // message to include the bindings with SQL, which will make this exception a
   676▕         // lot more helpful to the developer instead of just the database's errors.
   677▕         catch (Exception $e) {
 ➜ 678▕             throw new QueryException(
   679▕                 $query, $this->prepareBindings($bindings), $e
   680▕             );
   681▕         }
   682▕
    }
   682▕
 1   C:\Users\M\Desktop\blog\vendor\laravel\framework\src\Illuminate\Database\Connection.php:471
     PDOException::("SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists")
 2   C:\Users\M\Desktop\blog\vendor\laravel\framework\src\Illuminate\Database\Connection.php:471
     PDOStatement::execute()
C:\Users\M\Desktop\blog>