Fix for L6

This commit is contained in:
Patrick Henninger
2022-02-06 23:38:35 +01:00
parent 92ef805c67
commit 258ab468ea

View File

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