修改版本
This commit is contained in:
+22238
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)");
|
||||
|
||||
Reference in New Issue
Block a user