using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace CMS.Plugin.HIAWms.MySQL.Migrations { public partial class InitialCreate16 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "IsDisabled", table: "scms_wmsplaces", type: "tinyint(1)", nullable: false, defaultValue: false, comment: "是否禁用", oldClrType: typeof(bool), oldType: "tinyint(1)", oldNullable: true, oldComment: "是否禁用"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "IsDisabled", table: "scms_wmsplaces", type: "tinyint(1)", nullable: true, comment: "是否禁用", oldClrType: typeof(bool), oldType: "tinyint(1)", oldDefaultValue: false, oldComment: "是否禁用"); } } }