using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ManagerService.Migrations { /// public partial class RemoveDeadGuidedStepFlags : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FactContent", table: "GuidedSteps"); migrationBuilder.DropColumn( name: "IsHiddenInitially", table: "GuidedSteps"); migrationBuilder.DropColumn( name: "IsStepLocked", table: "GuidedSteps"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "FactContent", table: "GuidedSteps", type: "jsonb", nullable: true); migrationBuilder.AddColumn( name: "IsHiddenInitially", table: "GuidedSteps", type: "boolean", nullable: false, defaultValue: false); migrationBuilder.AddColumn( name: "IsStepLocked", table: "GuidedSteps", type: "boolean", nullable: false, defaultValue: false); } } }