ออกคำสั่งวินัย
This commit is contained in:
parent
7556a6c400
commit
be98975ce0
10 changed files with 17496 additions and 68 deletions
16953
BMA.EHR.Infrastructure/Migrations/20240105192057_update table commandreceive add refdiscripline.Designer.cs
generated
Normal file
16953
BMA.EHR.Infrastructure/Migrations/20240105192057_update table commandreceive add refdiscripline.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,31 @@
|
|||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace BMA.EHR.Infrastructure.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class updatetablecommandreceiveaddrefdiscripline : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<Guid>(
|
||||
name: "RefDisciplineId",
|
||||
table: "CommandReceivers",
|
||||
type: "char(36)",
|
||||
nullable: true,
|
||||
comment: "รหัสอ้างอิงไปยังข้อมูลวินัย",
|
||||
collation: "ascii_general_ci");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "RefDisciplineId",
|
||||
table: "CommandReceivers");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -575,6 +575,10 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
.HasColumnType("varchar(50)")
|
||||
.HasComment("คำนำหน้านาม");
|
||||
|
||||
b.Property<Guid?>("RefDisciplineId")
|
||||
.HasColumnType("char(36)")
|
||||
.HasComment("รหัสอ้างอิงไปยังข้อมูลวินัย");
|
||||
|
||||
b.Property<Guid?>("RefPlacementProfileId")
|
||||
.HasColumnType("char(36)")
|
||||
.HasComment("รหัสอ้างอิงไปยังข้อมูลผู้บรรจุ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue