using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace WCS.Service.Migrations { public partial class 新增货物类型 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "MaterialCode", table: "WCS_TASK_OLD", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "MaterialCode", table: "WCS_TASK", type: "nvarchar(max)", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "MaterialCode", table: "WCS_TASK_OLD"); migrationBuilder.DropColumn( name: "MaterialCode", table: "WCS_TASK"); } } }