using Microsoft.EntityFrameworkCore.Migrations; namespace tb320eva.Migrations { public partial class UpdateEvaDetail : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "eva_employee_id", table: "eva_create_evaluation_detail", nullable: true); migrationBuilder.AddColumn( name: "supervisor1_id", table: "eva_create_evaluation_detail", nullable: true); migrationBuilder.AddColumn( name: "supervisor2_id", table: "eva_create_evaluation_detail", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "eva_employee_id", table: "eva_create_evaluation_detail"); migrationBuilder.DropColumn( name: "supervisor1_id", table: "eva_create_evaluation_detail"); migrationBuilder.DropColumn( name: "supervisor2_id", table: "eva_create_evaluation_detail"); } } }