เพิ่มapi dashboard exam
This commit is contained in:
parent
ac3d2c9d26
commit
eb567349b4
10 changed files with 1956 additions and 261 deletions
29
Migrations/20230419161736_update table exam add pass.cs
Normal file
29
Migrations/20230419161736_update table exam add pass.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace BMA.EHR.Recurit.Exam.Service.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class updatetableexamaddpass : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "Pass",
|
||||
table: "Candidates",
|
||||
type: "tinyint(1)",
|
||||
nullable: true,
|
||||
comment: "ผลสมัครสอบ");
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Pass",
|
||||
table: "Candidates");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue