Update 2022_02_06_194000_create_shoppingcart_items_table.php

This commit is contained in:
Patrick
2022-02-08 23:58:49 +01:00
committed by GitHub
parent 1908196f74
commit 8b3a4cd6ea

View File

@@ -28,7 +28,7 @@ class CreateShoppingcartItemsTable extends Migration
$table->integer('qty')->nullable(); $table->integer('qty')->nullable();
$table->float('discount_rate')->nullable(); $table->float('discount_rate')->nullable();
$table->unsignedBigInteger('discount_fixed')->nullable(); $table->unsignedBigInteger('discount_fixed')->nullable();
$table->float('taxRate')->nullable(); $table->float('tax_rate')->nullable();
/* Custom-Options of the CartItem */ /* Custom-Options of the CartItem */
$table->json('options'); $table->json('options');