Drop the down()

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2023-12-19 18:25:21 +00:00
parent ab2c85778a
commit 9dbc38e2ca

View file

@ -38,10 +38,8 @@ class AddImageToAssets extends Migration
public function down() public function down()
{ {
Schema::table('assets', function ($table) { /**
if (Schema::hasColumn('assets', 'image')) { * I'm leaving this one out, since it could destroy data that was already long-existing.
$table->dropColumn('image'); */
}
});
} }
} }