Files
hrm_eva/Migrations/25630206154305_NewProcess2.cs
Nakorn Rientrakrunchai 8b98125e49 First Initial
2020-02-20 15:02:39 +07:00

50 lines
1.5 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class NewProcess2 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<decimal>(
name: "score2",
table: "eva_evaluation_behavior",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "sumary2",
table: "eva_evaluation_behavior",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "score2",
table: "eva_evaluation_achievement",
nullable: true);
migrationBuilder.AddColumn<decimal>(
name: "sumary2",
table: "eva_evaluation_achievement",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "score2",
table: "eva_evaluation_behavior");
migrationBuilder.DropColumn(
name: "sumary2",
table: "eva_evaluation_behavior");
migrationBuilder.DropColumn(
name: "score2",
table: "eva_evaluation_achievement");
migrationBuilder.DropColumn(
name: "sumary2",
table: "eva_evaluation_achievement");
}
}
}