using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Business.Migrations.BusinessExtMigrationDb { public partial class AddIsProduce : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "FIsAsset", table: "in_kd_material", type: "varchar(1)", maxLength: 1, nullable: true, comment: "允许资产") .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AddColumn( name: "FIsProduce", table: "in_kd_material", type: "varchar(1)", maxLength: 1, nullable: true, comment: "FIsProduce") .Annotation("MySql:CharSet", "utf8mb4"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FIsAsset", table: "in_kd_material"); migrationBuilder.DropColumn( name: "FIsProduce", table: "in_kd_material"); } } }