รวมหน้าจอ วงเงินที่ใช้ในการเลื่อนเงินเดือน

This commit is contained in:
Nakorn Rientrakrunchai
2021-03-04 22:25:37 +07:00
parent 309d1a5e16
commit 9530d1aa37
34 changed files with 3220 additions and 550 deletions

View File

@@ -0,0 +1,22 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class AddTotalSalary : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<decimal>(
name: "total_salary",
table: "eva_limit_frame_plan",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "total_salary",
table: "eva_limit_frame_plan");
}
}
}