รวม code ส่งเข้า ZD

This commit is contained in:
Nakorn Rientrakrunchai
2020-02-29 17:51:41 +07:00
parent 56393561e7
commit 9fe55ebeea
65 changed files with 5045 additions and 136 deletions

View File

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