From b018ce007fb550c520587b683947f27dad275a02 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 3 Feb 2022 00:33:27 +0100 Subject: [PATCH] Delete 2022_02_03_000000_remove_content_from_shoppingcart_table.php --- ...remove_content_from_shoppingcart_table.php | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 src/Database/migrations/2022_02_03_000000_remove_content_from_shoppingcart_table.php diff --git a/src/Database/migrations/2022_02_03_000000_remove_content_from_shoppingcart_table.php b/src/Database/migrations/2022_02_03_000000_remove_content_from_shoppingcart_table.php deleted file mode 100644 index c926142..0000000 --- a/src/Database/migrations/2022_02_03_000000_remove_content_from_shoppingcart_table.php +++ /dev/null @@ -1,27 +0,0 @@ -dropColumn('content'); - }); - } - - /** - * Reverse the migrations. - */ - public function down() - { - Schema::table(config('cart.database.table'), function (Blueprint $table) { - $table->longText('content'); - }); - }