IR下载增加字段记录
This commit is contained in:
+22426
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,28 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class addIRDownload : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "IsIRImageDownloaded",
|
||||
table: "VisitTask",
|
||||
type: "bit",
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "IsIRImageDownloaded",
|
||||
table: "VisitTask");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -16668,6 +16668,9 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||
.HasColumnType("bit")
|
||||
.HasComment("重阅重置任务的 标注是转化之前的 还是转化之后的");
|
||||
|
||||
b.Property<bool?>("IsIRImageDownloaded")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<bool>("IsNeedClinicalDataSign")
|
||||
.HasColumnType("bit")
|
||||
.HasComment("临床数据");
|
||||
|
||||
Reference in New Issue
Block a user