เพิ่มหน้าจอบันทึกผลการตรวจข้อตกลงการประเมิน

This commit is contained in:
Nakorn Rientrakrunchai
2021-02-12 12:23:41 +07:00
parent cb3a43e624
commit 7b525b9784
21 changed files with 2109 additions and 1 deletions

View File

@@ -0,0 +1,52 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class Addchief_a : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "chief_a",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<DateTime>(
name: "chief_a_date",
table: "eva_create_evaluation_detail",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "chief_a_remark",
table: "eva_create_evaluation_detail",
maxLength: 1000,
nullable: true);
migrationBuilder.AddColumn<string>(
name: "chief_a_result",
table: "eva_create_evaluation_detail",
maxLength: 1,
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "chief_a",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "chief_a_date",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "chief_a_remark",
table: "eva_create_evaluation_detail");
migrationBuilder.DropColumn(
name: "chief_a_result",
table: "eva_create_evaluation_detail");
}
}
}