ปรับปรุงการนับคะแนนของคนที่คร่อมรอบ

This commit is contained in:
LAPTOP-KB8JC2K2\acer
2021-03-14 13:31:48 +07:00
parent 8606c238b0
commit 0a0ef78366
11 changed files with 1277 additions and 104 deletions

View File

@@ -0,0 +1,50 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class UpdatePostponementDetail : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<decimal>(
name: "achievement_final",
table: "eva_adjust_postponement_detail",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "competency_final",
table: "eva_adjust_postponement_detail",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "level_score_final",
table: "eva_adjust_postponement_detail",
maxLength: 255,
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "score_final",
table: "eva_adjust_postponement_detail",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "achievement_final",
table: "eva_adjust_postponement_detail");
migrationBuilder.DropColumn(
name: "competency_final",
table: "eva_adjust_postponement_detail");
migrationBuilder.DropColumn(
name: "level_score_final",
table: "eva_adjust_postponement_detail");
migrationBuilder.DropColumn(
name: "score_final",
table: "eva_adjust_postponement_detail");
}
}
}