From 258ab468eab7c3afa8255a8494c7d7c666822337 Mon Sep 17 00:00:00 2001 From: Patrick Henninger Date: Sun, 6 Feb 2022 23:38:35 +0100 Subject: [PATCH] Fix for L6 --- .../2022_02_06_194000_create_shoppingcart_items_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/migrations/2022_02_06_194000_create_shoppingcart_items_table.php b/src/Database/migrations/2022_02_06_194000_create_shoppingcart_items_table.php index 938f811..8e4a05a 100644 --- a/src/Database/migrations/2022_02_06_194000_create_shoppingcart_items_table.php +++ b/src/Database/migrations/2022_02_06_194000_create_shoppingcart_items_table.php @@ -27,7 +27,7 @@ class CreateShoppingcartItemsTable extends Migration $table->unsignedBigInteger('price')->nullable(); $table->unsignedFloat('discount_rate')->nullable(); $table->unsignedBigInteger('discount_fixed')->nullable(); - $table->unsignedFloat('taxRate')->nullable(); + $table->float('taxRate')->nullable(); /* Custom-Options of the CartItem */ $table->json('options');