Conditionally drop table

This commit is contained in:
Marcus Moore 2023-01-10 17:24:38 -08:00
parent 296c9a723d
commit 03938d0f32
No known key found for this signature in database

View file

@ -37,7 +37,7 @@ class ReCreateLicensesTable extends Migration
*/
public function down()
{
//
Schema::drop('licenses');
// This was most likely handled in 2013_11_17_054359_drop_licenses_table.php
Schema::dropIfExists('licenses');
}
}