using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace AccountMangement.Infrastructure.EFCore.Migrations { /// public partial class romoveIsProgramManagerUserFromAccount : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsProgramManagerUser", table: "Accounts"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsProgramManagerUser", table: "Accounts", type: "bit", nullable: false, defaultValue: false); } } }