Is your feature request related to a problem? Please describe.
Running php artisan migrate:rollback and php artisan migrate again results in error Base table or view already exists: 1050 Table 'media' already exists…
Describe the solution you'd like
Add
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('media');
}
Is your feature request related to a problem? Please describe. Running
php artisan migrate:rollback
andphp artisan migrate
again results in errorBase table or view already exists: 1050 Table 'media' already exists…
Describe the solution you'd like Add
to migration