24 lines
650 B
C#
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");
|
|
}
|
|
}
|
|
}
|