using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Infrastructure.Migrations
{
///
public partial class updatetableRetirementQuestionaddAppointDate : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "AppointDate",
table: "RetirementQuestions",
type: "datetime(6)",
nullable: true,
comment: "กําหนดวันนัดหมายเพื่อทําการสัมภาษณ์การลาออก");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AppointDate",
table: "RetirementQuestions");
}
}
}