using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FlexJobApi.Database.Migrations.Migrations { /// public partial class UpdateDictionaryData0805002 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsDisabled", table: "DictionaryData", type: "bit", nullable: false, defaultValue: false, comment: "是否禁用"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsDisabled", table: "DictionaryData"); } } }