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