using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace wtmProject.DataAccess.Migrations { public partial class hmr2024071201 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ERPCode", table: "WTM_CONTRACT", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "ERPName", table: "WTM_CONTRACT", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "Year", table: "WTM_CONTRACT", type: "nvarchar(max)", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ERPCode", table: "WTM_CONTRACT"); migrationBuilder.DropColumn( name: "ERPName", table: "WTM_CONTRACT"); migrationBuilder.DropColumn( name: "Year", table: "WTM_CONTRACT"); } } }