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