修改版本

This commit is contained in:
he
2026-05-12 15:24:02 +08:00
parent 14cc78cffc
commit 4fe915cfd8
6 changed files with 22291 additions and 2 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,29 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class SEGUpdateTime : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "SEGUpdateTime",
table: "Segmentation",
type: "datetime2",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SEGUpdateTime",
table: "Segmentation");
}
}
}
@@ -9505,6 +9505,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<bool>("IsSaved")
.HasColumnType("bit");
b.Property<DateTime?>("SEGUpdateTime")
.HasColumnType("datetime2");
b.Property<string>("SEGUrl")
.IsRequired()
.HasColumnType("nvarchar(max)");