50 lines
1.7 KiB
C#
50 lines
1.7 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace BMA.EHR.Infrastructure.Migrations.LeaveDb
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddLeaveDayused : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "LeaveDays",
|
|
table: "LeaveBeginnings",
|
|
type: "double",
|
|
nullable: false,
|
|
comment: "จำนวนวันลายกมา",
|
|
oldClrType: typeof(double),
|
|
oldType: "double",
|
|
oldComment: "จำนวนวันลา");
|
|
|
|
migrationBuilder.AddColumn<double>(
|
|
name: "LeaveDaysUsed",
|
|
table: "LeaveBeginnings",
|
|
type: "double",
|
|
nullable: false,
|
|
defaultValue: 0.0,
|
|
comment: "จำนวนวันลาที่ใช้ไป");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "LeaveDaysUsed",
|
|
table: "LeaveBeginnings");
|
|
|
|
migrationBuilder.AlterColumn<double>(
|
|
name: "LeaveDays",
|
|
table: "LeaveBeginnings",
|
|
type: "double",
|
|
nullable: false,
|
|
comment: "จำนวนวันลา",
|
|
oldClrType: typeof(double),
|
|
oldType: "double",
|
|
oldComment: "จำนวนวันลายกมา");
|
|
}
|
|
}
|
|
}
|