fix #1357 ปรับ API
This commit is contained in:
parent
7b55e16e7d
commit
88270a230f
6 changed files with 20839 additions and 27 deletions
20683
BMA.EHR.Infrastructure/Migrations/20250529062132_Add ProfileType To InsigniaRequest.Designer.cs
generated
Normal file
20683
BMA.EHR.Infrastructure/Migrations/20250529062132_Add ProfileType To InsigniaRequest.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,29 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace BMA.EHR.Infrastructure.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class AddProfileTypeToInsigniaRequest : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "ProfileType",
|
||||
table: "InsigniaRequests",
|
||||
type: "longtext",
|
||||
nullable: true)
|
||||
.Annotation("MySql:CharSet", "utf8mb4");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "ProfileType",
|
||||
table: "InsigniaRequests");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -6542,6 +6542,9 @@ namespace BMA.EHR.Infrastructure.Migrations
|
|||
b.Property<Guid>("PeriodId")
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
b.Property<string>("ProfileType")
|
||||
.HasColumnType("longtext");
|
||||
|
||||
b.Property<string>("RequestNote")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue