diff --git a/database/migrations/create_settings_table.php.stub b/database/migrations/create_settings_table.php.stub index b06322a..a976e9b 100644 --- a/database/migrations/create_settings_table.php.stub +++ b/database/migrations/create_settings_table.php.stub @@ -14,4 +14,9 @@ return new class extends Migration $table->longText('value')->nullable(); }); } + + public function down(): void + { + Schema::dropIfExists(config('settings.table')); + } };