using Microsoft.EntityFrameworkCore.Migrations; namespace tb320eva.Migrations { public partial class NewStatus02 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "status_chief", table: "eva_create_evaluation_detail", maxLength: 1, nullable: true); migrationBuilder.AddColumn( name: "status_self", table: "eva_create_evaluation_detail", maxLength: 1, nullable: true); migrationBuilder.AddColumn( name: "status_supervisor", table: "eva_create_evaluation_detail", maxLength: 1, nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "status_chief", table: "eva_create_evaluation_detail"); migrationBuilder.DropColumn( name: "status_self", table: "eva_create_evaluation_detail"); migrationBuilder.DropColumn( name: "status_supervisor", table: "eva_create_evaluation_detail"); } } }