From 8b3a4cd6eae5ed3a166b6ba453a3806f3b776021 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 8 Feb 2022 23:58:49 +0100 Subject: [PATCH] Update 2022_02_06_194000_create_shoppingcart_items_table.php --- .../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 2ed9981..f717e86 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 @@ -28,7 +28,7 @@ class CreateShoppingcartItemsTable extends Migration $table->integer('qty')->nullable(); $table->float('discount_rate')->nullable(); $table->unsignedBigInteger('discount_fixed')->nullable(); - $table->float('taxRate')->nullable(); + $table->float('tax_rate')->nullable(); /* Custom-Options of the CartItem */ $table->json('options');