添加字段
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2026-03-16 09:56:06 +08:00
parent 56cbe08f39
commit 02a1ffe8b7
6 changed files with 21967 additions and 1 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,29 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class Segmentat2 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "SegmentJson",
table: "Segment",
type: "nvarchar(max)",
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SegmentJson",
table: "Segment");
}
}
}
@@ -9260,6 +9260,10 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
.HasPrecision(18, 2)
.HasColumnType("decimal(18,2)");
b.Property<string>("SegmentJson")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<int>("SegmentMumber")
.HasColumnType("int");