31 lines
927 B
C#
31 lines
927 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace BMA.EHR.Recruit.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");
|
|
}
|
|
}
|
|
}
|