From 3927c5eb04854c1b54009e7584fb19cb644e924e Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 8 Feb 2022 23:39:55 +0100 Subject: [PATCH] Update 2022_02_06_194000_create_shoppingcart_items_table.php --- .../2022_02_06_194000_create_shoppingcart_items_table.php | 1 + 1 file changed, 1 insertion(+) 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 37ad8de..2ed9981 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 @@ -25,6 +25,7 @@ class CreateShoppingcartItemsTable extends Migration /* The price of the CartItem */ $table->unsignedBigInteger('price')->nullable(); + $table->integer('qty')->nullable(); $table->float('discount_rate')->nullable(); $table->unsignedBigInteger('discount_fixed')->nullable(); $table->float('taxRate')->nullable();