Move drop column command to correct migration

This commit is contained in:
Marcus Moore 2023-01-10 17:06:16 -08:00
parent b8b2543b0d
commit e5cb68cc5e
No known key found for this signature in database

View file

@ -25,7 +25,7 @@ class AddShowInNavToStatusLabels extends Migration
public function down() public function down()
{ {
Schema::table('status_labels', function (Blueprint $table) { Schema::table('status_labels', function (Blueprint $table) {
$table->dropColumn('show_in_nav', 'field_encrypted'); $table->dropColumn('show_in_nav');
}); });
} }
} }