fix: expand DiscountProducts.FullInformation from nvarchar(2000) to nvarchar(max) — HTML content was getting truncated
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 8m17s

This commit is contained in:
masoodafar-web
2026-02-22 21:44:03 +03:30
parent 0fe4db5e77
commit e3fbd45739
4 changed files with 4820 additions and 4 deletions
@@ -1404,8 +1404,7 @@ namespace CMSMicroservice.Infrastructure.Persistence.Migrations
b.Property<string>("FullInformation")
.IsRequired()
.HasMaxLength(2000)
.HasColumnType("nvarchar(2000)");
.HasColumnType("nvarchar(max)");
b.Property<string>("ImagePath")
.IsRequired()