migration
All checks were successful
Branch - test - Build and Push Backend API Docker Image / build-and-push (push) Successful in 27s

This commit is contained in:
Tizian.Breuch
2025-11-07 15:31:14 +01:00
parent 55c75f84e4
commit c336b772d4
3 changed files with 1403 additions and 0 deletions

View File

@@ -613,6 +613,12 @@ namespace Webshop.Infrastructure.Migrations
.HasPrecision(18, 2)
.HasColumnType("numeric(18,2)");
b.Property<byte[]>("RowVersion")
.IsConcurrencyToken()
.IsRequired()
.ValueGeneratedOnAddOrUpdate()
.HasColumnType("bytea");
b.Property<string>("SKU")
.IsRequired()
.HasMaxLength(50)