sonderangebot artikel

This commit is contained in:
Tizian.Breuch
2025-08-12 14:32:47 +02:00
parent 3e68caf33c
commit 169c1aa2fd
11 changed files with 85 additions and 11 deletions

View File

@@ -573,6 +573,9 @@ namespace Webshop.Infrastructure.Migrations
.HasMaxLength(4000)
.HasColumnType("character varying(4000)");
b.Property<int>("FeaturedDisplayOrder")
.HasColumnType("integer");
b.Property<decimal?>("Height")
.HasPrecision(18, 2)
.HasColumnType("numeric(18,2)");
@@ -580,6 +583,9 @@ namespace Webshop.Infrastructure.Migrations
b.Property<bool>("IsActive")
.HasColumnType("boolean");
b.Property<bool>("IsFeatured")
.HasColumnType("boolean");
b.Property<bool>("IsInStock")
.HasColumnType("boolean");