I'm trying to make a migration for a new table for my scheme and when I run php artisan migrate I get the following mistake:
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 primary key, `name` varchar(191) not null, `email` varchar(191) not null, `email_verified_at` timestamp null, `password` varchar(191) not null, `remember_token` varchar(100) null, `created_at` timestamp null, `updated_at` timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci')
I did not create that migration, it came automatically with the php artisan make:auth and as far as I know it has already run because the users table is up and running, so I've no idea how to get around it. Any help would be greatly appreciated