From 138b3af8c9596f453f62b3a321524a431d5b9b25 Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Mon, 17 Jun 2024 12:36:19 +0300 Subject: [PATCH] Making SQLite happy --- ...24_06_07_083226_add_content_fields_to_taxons_table.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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'); }); }