修改
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-10-21 13:34:13 +08:00
parent 3cfb4556f3
commit 08e62e4500
3 changed files with 20521 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,29 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class ApplyCriterionList4 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ApplyCriterionList",
table: "FrontAuditConfig",
type: "nvarchar(max)",
nullable: false,
defaultValue: "[]");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ApplyCriterionList",
table: "FrontAuditConfig");
}
}
}

View File

@ -2719,6 +2719,10 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<Guid>("Id") b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier"); .HasColumnType("uniqueidentifier");
b.Property<string>("ApplyCriterionList")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("ChildDataEnLabel") b.Property<string>("ChildDataEnLabel")
.IsRequired() .IsRequired()
.HasMaxLength(400) .HasMaxLength(400)