Fix column name typo

This commit is contained in:
Marcus Moore 2023-01-10 17:21:46 -08:00
parent 4ee3cbf60e
commit c5b09ed955
No known key found for this signature in database

View file

@ -24,7 +24,7 @@ class AddEolOnModelsTable extends Migration
public function down()
{
Schema::table('models', function ($table) {
$table->dropColumn('old');
$table->dropColumn('eol');
});
}
}