new migration

This commit is contained in:
Tizian.Breuch
2025-09-30 19:34:56 +02:00
parent fab0e517d7
commit e828c3a34a
3 changed files with 1407 additions and 0 deletions

View File

@@ -847,6 +847,12 @@ namespace Webshop.Infrastructure.Migrations
b.Property<bool>("IsActive")
.HasColumnType("boolean");
b.Property<int>("MaxDeliveryDays")
.HasColumnType("integer");
b.Property<int>("MinDeliveryDays")
.HasColumnType("integer");
b.Property<decimal?>("MinimumOrderAmount")
.HasPrecision(18, 2)
.HasColumnType("numeric(18,2)");