เพิ่มรหัสตำแหน่ง

This commit is contained in:
Kittapath 2023-10-04 18:04:56 +07:00
parent 60eee3711d
commit 20b031c29f
8 changed files with 3023 additions and 6 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,30 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Recurit.Exam.Service.Migrations
{
/// <inheritdoc />
public partial class UpdateTableCareersaddcode : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Code",
table: "PositionExams",
type: "longtext",
nullable: true,
comment: "รหัสประจำตำแหน่งที่สอบ")
.Annotation("MySql:CharSet", "utf8mb4");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Code",
table: "PositionExams");
}
}
}