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