shipping method weight

This commit is contained in:
Tizian.Breuch
2025-11-26 09:56:05 +01:00
parent e42c4d6741
commit efc70084c3
7 changed files with 1472 additions and 41 deletions

View File

@@ -855,9 +855,15 @@ namespace Webshop.Infrastructure.Migrations
b.Property<int>("MaxDeliveryDays")
.HasColumnType("integer");
b.Property<decimal>("MaxWeight")
.HasColumnType("numeric");
b.Property<int>("MinDeliveryDays")
.HasColumnType("integer");
b.Property<decimal>("MinWeight")
.HasColumnType("numeric");
b.Property<decimal?>("MinimumOrderAmount")
.HasPrecision(18, 2)
.HasColumnType("numeric(18,2)");