using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BaseService.Migrations { /// public partial class updateMenuIsAffix : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsAffix", table: "base_menu", type: "bit", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsAffix", table: "base_menu"); } } }