ปรับปรุงหน้าจอ ประวัติการแก้ไข

This commit is contained in:
LAPTOP-KB8JC2K2\acer
2021-09-11 15:00:56 +07:00
parent fdb09a2427
commit 656d991f07
13 changed files with 1143 additions and 19 deletions

File diff suppressed because it is too large Load Diff

View File

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

View File

@@ -427,6 +427,8 @@ namespace tb320eva.Migrations
b.Property<int?>("evaluation_detail_id");
b.Property<int?>("history_group");
b.Property<bool>("isActive");
b.Property<DateTime>("updated");