Browse Source

register_check

master
wxd 11 months ago
parent
commit
908f931066
  1. 16226
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20241126055544_update_register_check_auditor_name.Designer.cs
  2. 25
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20241126055544_update_register_check_auditor_name.cs
  3. 8
      src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs

16226
src/Shentun.Peis.EntityFrameworkCore/Migrations/20241126055544_update_register_check_auditor_name.Designer.cs
File diff suppressed because it is too large
View File

25
src/Shentun.Peis.EntityFrameworkCore/Migrations/20241126055544_update_register_check_auditor_name.cs

@ -0,0 +1,25 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Shentun.Peis.Migrations
{
public partial class update_register_check_auditor_name : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "lis_auditor_doctor_name",
table: "register_check",
newName: "auditor_name");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "auditor_name",
table: "register_check",
newName: "lis_auditor_doctor_name");
}
}
}

8
src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs

@ -8726,6 +8726,10 @@ namespace Shentun.Peis.Migrations
.HasColumnName("audit_time")
.HasComment("审核时间");
b.Property<string>("AuditorName")
.HasColumnType("text")
.HasColumnName("auditor_name");
b.Property<Guid?>("AuditorUserId")
.HasColumnType("uuid")
.HasColumnName("auditor_user_id")
@ -8898,10 +8902,6 @@ namespace Shentun.Peis.Migrations
.HasColumnType("uuid")
.HasColumnName("last_modifier_id");
b.Property<string>("LisAuditorDoctorName")
.HasColumnType("text")
.HasColumnName("lis_auditor_doctor_name");
b.Property<string>("LisSampleNo")
.HasColumnType("text")
.HasColumnName("lis_sample_no");

Loading…
Cancel
Save