แก้บรรจุผูกกับโครงสร้างใหม่

This commit is contained in:
Kittapath 2024-02-22 10:40:24 +07:00
parent 06af1fc632
commit adada88230
6 changed files with 17266 additions and 19 deletions

View file

@ -0,0 +1,65 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class updatetableplacementaddshortname : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "PosNumber",
table: "PlacementProfiles",
type: "int",
nullable: true,
comment: "ชื่อตำแหน่งเลขที่");
migrationBuilder.AddColumn<string>(
name: "PosPath",
table: "PlacementProfiles",
type: "longtext",
nullable: true,
comment: "ชื่อตำแหน่ง")
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.AddColumn<string>(
name: "orgTreeShortName",
table: "PlacementProfiles",
type: "longtext",
nullable: true,
comment: "ชื่อย่อหน่วยงาน")
.Annotation("MySql:CharSet", "utf8mb4");
migrationBuilder.AddColumn<string>(
name: "organizationName",
table: "PlacementProfiles",
type: "longtext",
nullable: true,
comment: "ชื่อหน่วยงาน")
.Annotation("MySql:CharSet", "utf8mb4");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PosNumber",
table: "PlacementProfiles");
migrationBuilder.DropColumn(
name: "PosPath",
table: "PlacementProfiles");
migrationBuilder.DropColumn(
name: "orgTreeShortName",
table: "PlacementProfiles");
migrationBuilder.DropColumn(
name: "organizationName",
table: "PlacementProfiles");
}
}
}