Files
hrm_eva/Migrations/20210914074108_UpdateRemarkToPlan.cs
2021-09-14 15:52:06 +07:00

24 lines
650 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class UpdateRemarkToPlan : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "remark",
table: "eva_performance_plan",
maxLength: 500,
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "remark",
table: "eva_performance_plan");
}
}
}