hrms-api-backend/BMA.EHR.Infrastructure/Migrations/20231002090715_update table RetirementOther add MilitaryDate.cs

30 lines
903 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class updatetableRetirementOtheraddMilitaryDate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "MilitaryDate",
table: "RetirementOthers",
type: "datetime(6)",
nullable: true,
comment: "วันที่พ้นจากราชการทหาร");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "MilitaryDate",
table: "RetirementOthers");
}
}
}