diff --git a/database/migrations/create_rich_texts_table.php.stub b/database/migrations/create_rich_texts_table.php.stub index 4da07d9..31eff54 100644 --- a/database/migrations/create_rich_texts_table.php.stub +++ b/database/migrations/create_rich_texts_table.php.stub @@ -17,4 +17,9 @@ return new class extends Migration { $table->unique(['field', 'record_type', 'record_id']); }); } + + public function down() + { + Schema::dropIfExists('rich_texts'); + } };