ปรับปรุง UI และ Flow ของงาน เพิ่มเติม

This commit is contained in:
Nakorn Rientrakrunchai
2021-02-13 12:31:34 +07:00
parent fc5cd13a6e
commit 2159daa300
15 changed files with 898 additions and 31 deletions

View File

@@ -0,0 +1,23 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class AddRejectReason : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "chief_a_reject_reason",
table: "eva_create_evaluation_detail",
maxLength: 1000,
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "chief_a_reject_reason",
table: "eva_create_evaluation_detail");
}
}
}