using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Recruit.Service.Migrations
{
///
public partial class AddFieldNumbertoScore : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "Number",
table: "RecruitScores",
type: "varchar(200)",
maxLength: 200,
nullable: false,
defaultValue: "",
comment: "ลำดับที่สอบได้")
.Annotation("MySql:CharSet", "utf8mb4");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Number",
table: "RecruitScores");
}
}
}