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 new file mode 100644 index 0000000..c926142 --- /dev/null +++ b/src/Database/migrations/2022_02_03_000000_remove_content_from_shoppingcart_table.php @@ -0,0 +1,27 @@ +dropColumn('content'); + }); + } + + /** + * Reverse the migrations. + */ + public function down() + { + Schema::table(config('cart.database.table'), function (Blueprint $table) { + $table->longText('content'); + }); + }