hrms-api-backend/BMA.EHR.Infrastructure/Migrations/20241228140037_update table placementprofile add poscandidate.cs
2025-01-05 21:57:27 +07:00

30 lines
917 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class updatetableplacementprofileaddposcandidate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "PositionCandidate",
table: "PlacementProfiles",
type: "longtext",
nullable: true,
comment: "ตำแหน่งสอบ")
.Annotation("MySql:CharSet", "utf8mb4");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PositionCandidate",
table: "PlacementProfiles");
}
}
}