Reference the correct table in migration down method

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

View file

@ -28,7 +28,7 @@ class AddFieldsToManufacturer extends Migration
*/ */
public function down() public function down()
{ {
Schema::table('settings', function ($table) { Schema::table('manufacturers', function ($table) {
$table->dropColumn('url'); $table->dropColumn('url');
$table->dropColumn('support_url'); $table->dropColumn('support_url');
$table->dropColumn('support_phone'); $table->dropColumn('support_phone');