ออกคำสั่งเงินเดือน

This commit is contained in:
Kittapath 2024-04-26 10:18:59 +07:00
parent b89c3301e3
commit 66c97a162b
14 changed files with 53814 additions and 1 deletions

View file

@ -0,0 +1,30 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Infrastructure.Migrations
{
/// <inheritdoc />
public partial class updatetablecommandaddsalaryPeriod : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "SalaryPeriod",
table: "Commands",
type: "longtext",
nullable: true,
comment: "รอบเงินเดือน")
.Annotation("MySql:CharSet", "utf8mb4");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SalaryPeriod",
table: "Commands");
}
}
}