diff --git a/database/migrations/2022_08_12_084822_add_type_to_drops_table.php b/database/migrations/2022_08_12_084822_add_type_to_drops_table.php index e2863cc..b74c429 100644 --- a/database/migrations/2022_08_12_084822_add_type_to_drops_table.php +++ b/database/migrations/2022_08_12_084822_add_type_to_drops_table.php @@ -27,7 +27,8 @@ public function up() public function down() { Schema::table('drops', function (Blueprint $table) { - // + // drop column + $table->dropColumn('type'); }); } };