Add API
ส่งออกข้อมูลผู้มิสิทธื์สอบ ส่งออกข้อมูลผู้สอบผ่านภาค ก.
This commit is contained in:
parent
b8109e80ac
commit
b1f8c78ced
34 changed files with 5935 additions and 8 deletions
31
Migrations/20230425050104_Add Field AnnouncementDate2.cs
Normal file
31
Migrations/20230425050104_Add Field AnnouncementDate2.cs
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace BMA.EHR.Recruit.Service.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class AddFieldAnnouncementDate2 : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<DateTime>(
|
||||
name: "AnnouncementDate",
|
||||
table: "RecruitImports",
|
||||
type: "datetime(6)",
|
||||
nullable: true,
|
||||
comment: "วันที่ประกาศผลสอบ")
|
||||
.Annotation("Relational:ColumnOrder", 14);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "AnnouncementDate",
|
||||
table: "RecruitImports");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue