fixing about migration down function

This commit is contained in:
2024-02-24 16:43:38 +01:00
parent ac426f9523
commit 571e5c6b1d

View File

@ -25,8 +25,6 @@ class About extends Migration
*/
public function down()
{
Schema::table('about', function (Blueprint $table) {
$table->dropColumn('about');
});
Schema::drop('about');
}
}