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
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 8m17s
This commit is contained in:
+1
-2
@@ -26,8 +26,7 @@ public class DiscountProductConfiguration : IEntityTypeConfiguration<DiscountPro
|
|||||||
.HasMaxLength(500);
|
.HasMaxLength(500);
|
||||||
|
|
||||||
builder.Property(entity => entity.FullInformation)
|
builder.Property(entity => entity.FullInformation)
|
||||||
.IsRequired()
|
.IsRequired();
|
||||||
.HasMaxLength(2000);
|
|
||||||
|
|
||||||
builder.Property(entity => entity.Price)
|
builder.Property(entity => entity.Price)
|
||||||
.IsRequired();
|
.IsRequired();
|
||||||
|
|||||||
+4780
File diff suppressed because it is too large
Load Diff
+38
@@ -0,0 +1,38 @@
|
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
||||||
|
|
||||||
|
#nullable disable
|
||||||
|
|
||||||
|
namespace CMSMicroservice.Infrastructure.Persistence.Migrations
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
public partial class ExpandDiscountProductFullInformation : Migration
|
||||||
|
{
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.AlterColumn<string>(
|
||||||
|
name: "FullInformation",
|
||||||
|
schema: "CMS",
|
||||||
|
table: "DiscountProducts",
|
||||||
|
type: "nvarchar(max)",
|
||||||
|
nullable: false,
|
||||||
|
oldClrType: typeof(string),
|
||||||
|
oldType: "nvarchar(2000)",
|
||||||
|
oldMaxLength: 2000);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
||||||
|
{
|
||||||
|
migrationBuilder.AlterColumn<string>(
|
||||||
|
name: "FullInformation",
|
||||||
|
schema: "CMS",
|
||||||
|
table: "DiscountProducts",
|
||||||
|
type: "nvarchar(2000)",
|
||||||
|
maxLength: 2000,
|
||||||
|
nullable: false,
|
||||||
|
oldClrType: typeof(string),
|
||||||
|
oldType: "nvarchar(max)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+1
-2
@@ -1404,8 +1404,7 @@ namespace CMSMicroservice.Infrastructure.Persistence.Migrations
|
|||||||
|
|
||||||
b.Property<string>("FullInformation")
|
b.Property<string>("FullInformation")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
.HasMaxLength(2000)
|
.HasColumnType("nvarchar(max)");
|
||||||
.HasColumnType("nvarchar(2000)");
|
|
||||||
|
|
||||||
b.Property<string>("ImagePath")
|
b.Property<string>("ImagePath")
|
||||||
.IsRequired()
|
.IsRequired()
|
||||||
|
|||||||
Reference in New Issue
Block a user