using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PARR.DAL.Migrations { /// public partial class tblGroupRemoveIsUmbrella : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsUmbrella", schema: "job", table: "Groups"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsUmbrella", schema: "job", table: "Groups", type: "boolean", nullable: true); } } }