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'); - }); - }