Update 2022_02_06_194000_create_shoppingcart_items_table.php

This commit is contained in:
Patrick
2022-02-08 23:39:55 +01:00
committed by GitHub
parent 9fe43d2bec
commit 3927c5eb04

View File

@@ -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();