using Microsoft.EntityFrameworkCore.Migrations; namespace tb320eva.Migrations { public partial class AddMigrationField003 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "employee_no_at_this_time", table: "eva_adjust_postponement_detail", maxLength: 1000, nullable: true); migrationBuilder.AddColumn( name: "fullname_at_this_time", table: "eva_adjust_postponement_detail", maxLength: 1000, nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "employee_no_at_this_time", table: "eva_adjust_postponement_detail"); migrationBuilder.DropColumn( name: "fullname_at_this_time", table: "eva_adjust_postponement_detail"); } } }