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

This commit is contained in:
he
2026-05-11 15:33:41 +08:00
parent 547bd54085
commit 44d9c23c0c
7 changed files with 22274 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 maxVersionStartTime : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "StartTime",
table: "SegmentationVersion",
type: "datetime2",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "StartTime",
table: "SegmentationVersion");
}
}
}
@@ -9582,6 +9582,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<DateTime?>("StartTime")
.HasColumnType("datetime2");
b.Property<int>("Version")
.HasColumnType("int");