Skip to content

Commit 0ab9794

Browse files
authored
added 'down' method
Seems like the 'down' method is missing.
1 parent b10486e commit 0ab9794

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

database/migrations/create_settings_table.php.stub

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,9 @@ return new class extends Migration
1414
$table->longText('value')->nullable();
1515
});
1616
}
17+
18+
public function down(): void
19+
{
20+
Schema::dropIfExists(config('settings.table'));
21+
}
1722
};

0 commit comments

Comments
 (0)