Add API
ส่งออกข้อมูลผู้มิสิทธื์สอบ ส่งออกข้อมูลผู้สอบผ่านภาค ก.
This commit is contained in:
parent
b8109e80ac
commit
b1f8c78ced
34 changed files with 5935 additions and 8 deletions
57
Migrations/20230424053822_Add Field Exam Part Result.cs
Normal file
57
Migrations/20230424053822_Add Field Exam Part Result.cs
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace BMA.EHR.Recruit.Service.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class AddFieldExamPartResult : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "AStatus",
|
||||
table: "RecruitScores",
|
||||
type: "varchar(50)",
|
||||
maxLength: 50,
|
||||
nullable: false,
|
||||
defaultValue: "")
|
||||
.Annotation("MySql:CharSet", "utf8mb4");
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "BStatus",
|
||||
table: "RecruitScores",
|
||||
type: "varchar(50)",
|
||||
maxLength: 50,
|
||||
nullable: false,
|
||||
defaultValue: "")
|
||||
.Annotation("MySql:CharSet", "utf8mb4");
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "CStatus",
|
||||
table: "RecruitScores",
|
||||
type: "varchar(50)",
|
||||
maxLength: 50,
|
||||
nullable: false,
|
||||
defaultValue: "")
|
||||
.Annotation("MySql:CharSet", "utf8mb4");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "AStatus",
|
||||
table: "RecruitScores");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "BStatus",
|
||||
table: "RecruitScores");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "CStatus",
|
||||
table: "RecruitScores");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue