diff --git a/src/Category/resources/database/migrations/2024_06_07_083226_add_content_fields_to_taxons_table.php b/src/Category/resources/database/migrations/2024_06_07_083226_add_content_fields_to_taxons_table.php index 0fbe4481..1a80df68 100644 --- a/src/Category/resources/database/migrations/2024_06_07_083226_add_content_fields_to_taxons_table.php +++ b/src/Category/resources/database/migrations/2024_06_07_083226_add_content_fields_to_taxons_table.php @@ -24,9 +24,17 @@ public function down(): void { Schema::table('taxons', function (Blueprint $table) { $table->dropColumn('subtitle'); + }); + Schema::table('taxons', function (Blueprint $table) { $table->dropColumn('excerpt'); + }); + Schema::table('taxons', function (Blueprint $table) { $table->dropColumn('description'); + }); + Schema::table('taxons', function (Blueprint $table) { $table->dropColumn('top_content'); + }); + Schema::table('taxons', function (Blueprint $table) { $table->dropColumn('bottom_content'); }); }