using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace CMS.Plugin.HIAWms.MySQL.Migrations { public partial class InitialCreate6 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Num", table: "scms_wmsmaterials", type: "int", nullable: false, comment: "数量", oldClrType: typeof(int), oldType: "int", oldComment: "是否有效物料"); migrationBuilder.AlterColumn( name: "IsSelfMade", table: "scms_wmsmaterials", type: "tinyint(1)", nullable: true, comment: "是否自产", oldClrType: typeof(bool), oldType: "tinyint(1)", oldNullable: true, oldComment: "数量"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Num", table: "scms_wmsmaterials", type: "int", nullable: false, comment: "是否有效物料", oldClrType: typeof(int), oldType: "int", oldComment: "数量"); migrationBuilder.AlterColumn( name: "IsSelfMade", table: "scms_wmsmaterials", type: "tinyint(1)", nullable: true, comment: "数量", oldClrType: typeof(bool), oldType: "tinyint(1)", oldNullable: true, oldComment: "是否自产"); } } }